mirror of
https://github.com/python/cpython.git
synced 2025-08-30 05:35:08 +00:00
Added docstrings by Sue Williams, re-indented to 4 spaces / level.
This commit is contained in:
parent
8f81ef1edd
commit
bcdb9403d4
1 changed files with 44 additions and 20 deletions
|
@ -1,3 +1,24 @@
|
||||||
|
"""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.]
|
||||||
|
"""
|
||||||
|
|
||||||
# Module 'commands'
|
# Module 'commands'
|
||||||
#
|
#
|
||||||
# Various tools for executing commands and looking at their output and status.
|
# Various tools for executing commands and looking at their output and status.
|
||||||
|
@ -8,6 +29,7 @@
|
||||||
# Get 'ls -l' status for an object into a string
|
# Get 'ls -l' status for an object into a string
|
||||||
#
|
#
|
||||||
def getstatus(file):
|
def getstatus(file):
|
||||||
|
"""Return output of "ls -ld <file>" in a string."""
|
||||||
return getoutput('ls -ld' + mkarg(file))
|
return getoutput('ls -ld' + mkarg(file))
|
||||||
|
|
||||||
|
|
||||||
|
@ -16,6 +38,7 @@ def getstatus(file):
|
||||||
# Assume the command will work with '{ ... ; } 2>&1' around it..
|
# Assume the command will work with '{ ... ; } 2>&1' around it..
|
||||||
#
|
#
|
||||||
def getoutput(cmd):
|
def getoutput(cmd):
|
||||||
|
"""Return output (stdout or stderr) of executing cmd in a shell."""
|
||||||
return getstatusoutput(cmd)[1]
|
return getstatusoutput(cmd)[1]
|
||||||
|
|
||||||
|
|
||||||
|
@ -23,6 +46,7 @@ def getoutput(cmd):
|
||||||
# Returns a pair (sts, output)
|
# Returns a pair (sts, output)
|
||||||
#
|
#
|
||||||
def getstatusoutput(cmd):
|
def getstatusoutput(cmd):
|
||||||
|
"""Return (status, output) of executing cmd in a shell."""
|
||||||
import os
|
import os
|
||||||
pipe = os.popen('{ ' + cmd + '; } 2>&1', 'r')
|
pipe = os.popen('{ ' + cmd + '; } 2>&1', 'r')
|
||||||
text = pipe.read()
|
text = pipe.read()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue