commands.py 2.21 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
"""Execute shell commands via os.popen() and return status, output.

Interface summary:
 
       import commands
        
       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:
                         
      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.]
"""

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


# Get 'ls -l' status for an object into a string
#
def getstatus(file):
32 33
    """Return output of "ls -ld <file>" in a string."""
    return getoutput('ls -ld' + mkarg(file))
Guido van Rossum's avatar
Guido van Rossum committed
34 35 36 37


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


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


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


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