Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
bcdb9403
Kaydet (Commit)
bcdb9403
authored
Haz 12, 1997
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added docstrings by Sue Williams, re-indented to 4 spaces / level.
üst
8f81ef1e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
20 deletions
+44
-20
commands.py
Lib/commands.py
+44
-20
No files found.
Lib/commands.py
Dosyayı görüntüle @
bcdb9403
"""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'
#
# Various tools for executing commands and looking at their output and status.
...
...
@@ -8,7 +29,8 @@
# Get 'ls -l' status for an object into a string
#
def
getstatus
(
file
):
return
getoutput
(
'ls -ld'
+
mkarg
(
file
))
"""Return output of "ls -ld <file>" in a string."""
return
getoutput
(
'ls -ld'
+
mkarg
(
file
))
# Get the output from a shell command into a string.
...
...
@@ -16,27 +38,29 @@ def getstatus(file):
# Assume the command will work with '{ ... ; } 2>&1' around it..
#
def
getoutput
(
cmd
):
return
getstatusoutput
(
cmd
)[
1
]
"""Return output (stdout or stderr) of executing cmd in a shell."""
return
getstatusoutput
(
cmd
)[
1
]
# Ditto but preserving the exit status.
# Returns a pair (sts, output)
#
def
getstatusoutput
(
cmd
):
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
"""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
# Make command argument from directory and pathname (prefix space, add quotes).
#
def
mk2arg
(
head
,
x
):
import
os
return
mkarg
(
os
.
path
.
join
(
head
,
x
))
import
os
return
mkarg
(
os
.
path
.
join
(
head
,
x
))
# Make a shell command argument from a string.
...
...
@@ -47,12 +71,12 @@ def mk2arg(head, x):
# with backslash.
#
def
mkarg
(
x
):
if
'
\'
'
not
in
x
:
return
'
\'
'
+
x
+
'
\'
'
s
=
' "'
for
c
in
x
:
if
c
in
'
\\
$"`'
:
s
=
s
+
'
\\
'
s
=
s
+
c
s
=
s
+
'"'
return
s
if
'
\'
'
not
in
x
:
return
'
\'
'
+
x
+
'
\'
'
s
=
' "'
for
c
in
x
:
if
c
in
'
\\
$"`'
:
s
=
s
+
'
\\
'
s
=
s
+
c
s
=
s
+
'"'
return
s
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment