commands.py 2.23 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 35
    """Return output of "ls -ld <file>" in a string."""
    return getoutput('ls -ld' + mkarg(file))
Guido van Rossum's avatar
Guido van Rossum committed
36 37 38 39


# 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
40
# Assume the command will work with '{ ... ; } 2>&1' around it..
Guido van Rossum's avatar
Guido van Rossum committed
41 42
#
def getoutput(cmd):
43 44
    """Return output (stdout or stderr) of executing cmd in a shell."""
    return getstatusoutput(cmd)[1]
Guido van Rossum's avatar
Guido van Rossum committed
45 46 47 48 49 50


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


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


# Make a shell command argument from a string.
69 70
# 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
71
# Two strategies: enclose in single quotes if it contains none;
Guido van Rossum's avatar
Guido van Rossum committed
72
# otherwise, enclose in double quotes and prefix quotable characters
Guido van Rossum's avatar
Guido van Rossum committed
73 74 75
# with backslash.
#
def mkarg(x):
76
    if '\'' not in x:
77
        return ' \'' + x + '\''
78 79
    s = ' "'
    for c in x:
80 81 82
        if c in '\\$"`':
            s = s + '\\'
        s = s + c
83 84
    s = s + '"'
    return s