Sign in
fuchsia
/
third_party
/
edk2
/
upstream/UDK2018
/
.
/
AppPkg
/
Applications
/
Python
/
Python-2.7.2
/
Demo
/
pdist
/
mac.py
blob: 43a904e480c6e6a7113effdf25ebadee2875c65b [
file
] [
log
] [
blame
]
import
sys
import
string
import
rcvs
def
main
():
while
1
:
try
:
line
=
raw_input
(
'$ '
)
except
EOFError
:
break
words
=
string
.
split
(
line
)
if
not
words
:
continue
if
words
[
0
]
!=
'rcvs'
:
words
.
insert
(
0
,
'rcvs'
)
sys
.
argv
=
words
rcvs
.
main
()
main
()