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
48154be1
Kaydet (Commit)
48154be1
authored
Agu 16, 1991
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Now uses pipes.
üst
0d3f4678
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
32 deletions
+9
-32
commands.py
Lib/commands.py
+9
-32
No files found.
Lib/commands.py
Dosyayı görüntüle @
48154be1
...
...
@@ -2,11 +2,6 @@
#
# Various tools for executing commands and looking at their output and status.
import
rand
import
posix
import
stat
import
path
# Get 'ls -l' status for an object into a string
#
...
...
@@ -16,8 +11,7 @@ def getstatus(file):
# Get the output from a shell command into a string.
# The exit status is ignored; a trailing newline is stripped.
# Assume the command will work with ' >tempfile 2>&1' appended.
# XXX This should use posix.popen() instead, should it exist.
# Assume the command will work with '{ ... ; } 2>&1' around it..
#
def
getoutput
(
cmd
):
return
getstatusoutput
(
cmd
)[
1
]
...
...
@@ -27,42 +21,25 @@ def getoutput(cmd):
# Returns a pair (sts, output)
#
def
getstatusoutput
(
cmd
):
tmp
=
'/usr/tmp/wdiff'
+
`rand.rand()`
sts
=
-
1
try
:
sts
=
posix
.
system
(
cmd
+
' >'
+
tmp
+
' 2>&1'
)
text
=
readfile
(
tmp
)
finally
:
altsts
=
posix
.
system
(
'rm -f '
+
tmp
)
import
posix
pipe
=
posix
.
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 a string containing a file's contents.
#
def
readfile
(
fn
):
st
=
posix
.
stat
(
fn
)
size
=
st
[
stat
.
ST_SIZE
]
if
not
size
:
return
''
try
:
fp
=
open
(
fn
,
'r'
)
except
:
raise
posix
.
error
,
'readfile('
+
fn
+
'): open failed'
try
:
return
fp
.
read
(
size
)
except
:
raise
posix
.
error
,
'readfile('
+
fn
+
'): read failed'
# Make command argument from directory and pathname (prefix space, add quotes).
#
def
mk2arg
(
head
,
x
):
return
mkarg
(
path
.
cat
(
head
,
x
))
import
path
return
mkarg
(
path
.
join
(
head
,
x
))
# Make a shell command argument from a string.
# Two strategies: enclose in single quotes if it contains none;
# otherwis, enclose in double quotes and prefix quotable characters
# otherwis
e
, enclose in double quotes and prefix quotable characters
# with backslash.
#
def
mkarg
(
x
):
...
...
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