You are viewing an older version (9.3.0). Go to latest (9.13.0)
{ } Raw JSON

bundles / IPython 9.3.0 / IPython / utils / _process_common / getoutput

function

IPython.utils._process_common:getoutput

source: /IPython/utils/_process_common.py :120

Signature

def   getoutput ( cmd )

Summary

Run a command and return its stdout/stderr as a string.

Parameters

cmd : str or list

A command to be executed in the system shell.

Returns

output : str

A 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