commands.py 2.32 KB
Newer Older
1 2 3
"""Execute shell commands via os.popen() and return status, output.

Interface summary:
Tim Peters's avatar
Tim Peters committed
4

5
       import commands
Tim Peters's avatar
Tim Peters committed
6

7 8 9 10 11 12 13
       outtext = commands.getoutput(cmd)
       (exitstatus, outtext) = commands.getstatusoutput(cmd)
       outtext = commands.getstatus(file)  # returns output of "ls -ld file"

A trailing newline is removed from the output string.

Encapsulates the basic operation:
Tim Peters's avatar
Tim Peters committed
14

15 16 17 18 19 20 21
      pipe = os.popen('{ ' + cmd + '; } 2>&1', 'r')
      text = pipe.read()
      sts = pipe.close()

 [Note:  it would be nice to add functions to interpret the exit status.]
"""

22 23
__all__ = ["getstatusoutput","getoutput","getstatus"]

Guido van Rossum's avatar
Guido van Rossum committed
24 25 26
# Module 'commands'
#
# Various tools for executing commands and looking at their output and status.
Guido van Rossum's avatar
Guido van Rossum committed
27 28
#
# NB This only works (and is only relevant) for UNIX.
Guido van Rossum's avatar
Guido van Rossum committed
29 30 31 32 33


# Get 'ls -l' status for an object into a string
#
def getstatus(file):
34
    """Return output of "ls -ld <file>" in a string."""
35 36
    import warnings
    warnings.warn("commands.getstatus() is deprecated", DeprecationWarning)
37
    return getoutput('ls -ld' + mkarg(file))
Guido van Rossum's avatar
Guido van Rossum committed
38 39 40 41


# Get the output from a shell command into a string.
# The exit status is ignored; a trailing newline is stripped.
Guido van Rossum's avatar
Guido van Rossum committed
42
# Assume the command will work with '{ ... ; } 2>&1' around it..
Guido van Rossum's avatar
Guido van Rossum committed
43 44
#
def getoutput(cmd):
45 46
    """Return output (stdout or stderr) of executing cmd in a shell."""
    return getstatusoutput(cmd)[1]
Guido van Rossum's avatar
Guido van Rossum committed
47 48 49 50 51 52


# Ditto but preserving the exit status.
# Returns a pair (sts, output)
#
def getstatusoutput(cmd):
53 54 55 56 57
    """Return (status, output) of executing cmd in a shell."""
    import os
    pipe = os.popen('{ ' + cmd + '; } 2>&1', 'r')
    text = pipe.read()
    sts = pipe.close()
58
    if sts is None: sts = 0
59 60
    if text[-1:] == '\n': text = text[:-1]
    return sts, text
Guido van Rossum's avatar
Guido van Rossum committed
61 62 63 64 65


# Make command argument from directory and pathname (prefix space, add quotes).
#
def mk2arg(head, x):
66 67
    import os
    return mkarg(os.path.join(head, x))
Guido van Rossum's avatar
Guido van Rossum committed
68 69 70


# Make a shell command argument from a string.
71 72
# Return a string beginning with a space followed by a shell-quoted
# version of the argument.
Guido van Rossum's avatar
Guido van Rossum committed
73
# Two strategies: enclose in single quotes if it contains none;
Guido van Rossum's avatar
Guido van Rossum committed
74
# otherwise, enclose in double quotes and prefix quotable characters
Guido van Rossum's avatar
Guido van Rossum committed
75 76 77
# with backslash.
#
def mkarg(x):
78
    if '\'' not in x:
79
        return ' \'' + x + '\''
80 81
    s = ' "'
    for c in x:
82 83 84
        if c in '\\$"`':
            s = s + '\\'
        s = s + c
85 86
    s = s + '"'
    return s