bundles / IPython 9.5.0 / IPython / utils / _process_common / getoutput
function
IPython.utils._process_common:getoutput
Signature
def getoutput ( cmd ) Summary
Run a command and return its stdout/stderr as a string.
Parameters
cmd: str or listA command to be executed in the system shell.
Returns
output: strA string containing the combination of stdout and stderr from the
: subprocess, in whatever order the subprocess originally wrote to its: file descriptors (so the order of the information in this string is the: correct order as would be seen if running the command in a terminal).
Aliases
-
IPython.core.interactiveshell.getoutput