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
ce662d04
Kaydet (Commit)
ce662d04
authored
Eki 11, 2009
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use getopt in script.py demo.
üst
9bb79659
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
8 deletions
+17
-8
script.py
Demo/scripts/script.py
+17
-8
No files found.
Demo/scripts/script.py
Dosyayı görüntüle @
ce662d04
#! /usr/bin/env python
#! /usr/bin/env python
# script.py -- Make typescript of terminal session.
# script.py -- Make typescript of terminal session.
# Usage:
# Usage:
# -a Append to typescript.
# -a Append to typescript.
...
@@ -6,7 +7,7 @@
...
@@ -6,7 +7,7 @@
# Author: Steen Lumholt.
# Author: Steen Lumholt.
import
os
,
time
,
sys
import
os
,
time
,
sys
,
getopt
import
pty
import
pty
def
read
(
fd
):
def
read
(
fd
):
...
@@ -19,15 +20,23 @@ filename = 'typescript'
...
@@ -19,15 +20,23 @@ filename = 'typescript'
mode
=
'w'
mode
=
'w'
if
os
.
environ
.
has_key
(
'SHELL'
):
if
os
.
environ
.
has_key
(
'SHELL'
):
shell
=
os
.
environ
[
'SHELL'
]
shell
=
os
.
environ
[
'SHELL'
]
if
'-a'
in
sys
.
argv
:
mode
=
'a'
if
'-p'
in
sys
.
argv
:
shell
=
'python'
file
=
open
(
filename
,
mode
)
try
:
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
'ap'
)
except
getopt
.
error
,
msg
:
print
'
%
s:
%
s'
%
(
sys
.
argv
[
0
],
msg
)
sys
.
exit
(
2
)
for
o
,
a
in
opts
:
if
o
==
'-a'
:
mode
=
'a'
elif
o
==
'-p'
:
shell
=
'python'
script
=
open
(
filename
,
mode
)
sys
.
stdout
.
write
(
'Script started, file is
%
s
\n
'
%
filename
)
sys
.
stdout
.
write
(
'Script started, file is
%
s
\n
'
%
filename
)
file
.
write
(
'Script started on
%
s
\n
'
%
time
.
ctime
(
time
.
time
()))
script
.
write
(
'Script started on
%
s
\n
'
%
time
.
ctime
(
time
.
time
()))
pty
.
spawn
(
shell
,
read
)
pty
.
spawn
(
shell
,
read
)
file
.
write
(
'Script done on
%
s
\n
'
%
time
.
ctime
(
time
.
time
()))
script
.
write
(
'Script done on
%
s
\n
'
%
time
.
ctime
(
time
.
time
()))
sys
.
stdout
.
write
(
'Script done, file is
%
s
\n
'
%
filename
)
sys
.
stdout
.
write
(
'Script done, file is
%
s
\n
'
%
filename
)
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