6.8.1.1 Convenience Functions

This module also defines one shortcut function:

call( *args, **kwargs)
Run command with arguments. Wait for command to complete, then return the returncode attribute.

The arguments are the same as for the Popen constructor. Example:

    retcode = call(["ls", "-l"])

See About this document... for information on suggesting changes.