##// END OF EJS Templates
jobctrl: use shell if the command line has shell control chars (|><), so that "bzr log | less" etc. work
jobctrl: use shell if the command line has shell control chars (|><), so that "bzr log | less" etc. work

File last commit:

r988:2f09c2ab
r1034:4eb1954e
Show More
test_cd.ipy
18 lines | 289 B | text/plain | TextLexer
# assumes there is /tmp and /opt
def curpath():
cwd = os.path.splitdrive(os.getcwd())[1].replace('\\','/')
print cwd
return cwd
import os
cd /
assert curpath() == '/'
%cd /tmp
assert curpath() == '/tmp'
pushd /opt
assert curpath() == '/opt'
popd
assert curpath() == '/tmp'