We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Home > [Scripting Reference](Scripting Reference) > os.outputof
The os.outputof function runs a shell command and returns the output.
#!lua result = os.outputof("command")
command is a shell command to run.
The output of the command.
#!lua -- Get the ID for the host processor architecture local proc = os.outputof("uname -p")