19/05/2023: A causa di un errore sono stati cancellati, insieme ad account creati da bot, alcuni account legittimi. Si prega di leggere qui: https://www.gambas-it.org/smf/index.php?topic=9733.0
' Gambas class filePUBLIC SUB _new()ENDPUBLIC SUB Form_Open() DIM sShellOutput AS String SHELL "uname -a" TO sShellOutput TextArea1.Text = sShellOutput ENDPUBLIC SUB TextArea1_KeyPress()END
' Gambas class filePUBLIC SUB _new()ENDPUBLIC SUB Form_Open()ENDPUBLIC SUB Button1_Click() DIM sShellOutput AS String SHELL "uname -a" TO sShellOutput TextArea1.Text = sShellOutputENDPUBLIC SUB TextArea1_KeyPress()END