Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: added qx function to desc

...

The exec() builtin function is the standard mechanism for executing system commands; it is a wrapper around the POSIX exec family of system calls. The system() builtin function is similar to exec, but it takes a single string whereas exec()takes a list. Finally  The qx() function, often represented by encasing a command in backquotes (``), can also be used to execute an arbitrary command. Finally the open() command can also execute commands in a subprocess and either send data to them or fetch data from them (but not both).

...