vote up 0 vote down star

I run the command in IPython

cd $cs<TAB>

but it does not allow me to expand the path.

How can you make IPython to read shell variables?

flag

1 Answer

vote up 2 vote down check

If i understand correctly what you mean by 'shell variables'. If you mean variables set in the shell ('environment variables'): you can read them with os.environ...

import os
cs = os.environ.get('cs')
runstring = "cd %s" (cs)
...
link|flag
Thank you for your answer! – Masi May 11 at 7:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.