repo.or.cz
/
polysh.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Only keep the basename in the transferred paths
[polysh.git]
/
bin
/
gsh
blob
36b4fd3aab372c9e3d92291cc07af4934342c9c3
1
#!/usr/bin/env python
2
3
try
:
4
from
gsh
.
main
import
main
5
except
ImportError
,
e
:
6
print
e
7
print
'To run an uninstalled copy of gsh,'
8
print
'launch gsh.py in the top directory'
9
else
:
10
main
()