7 lines
196 B
Text
7 lines
196 B
Text
sx = xtra("Shell").new()
|
|
|
|
-- print to standard error
|
|
sx.shell_cmd("echo Goodbye, World!>&2")
|
|
|
|
-- print to system.log (shown in realtime e.g. in Konsole.app)
|
|
sx.shell_cmd("logger Goodbye, World!")
|