system.command

Syntax

b = system.command(s)

Execute the string contents of the arguments as commands.

If the argument is a string it is executed as a single command.

If the argument is an array, every entry that is of string type is executed as a command.

If the argument is a map, every value of the map that is of string type is executed as command.

Returns:b - returns boolean value true.
Arguments:s - String or strings to process as commands, as a single string, an array, or a map.