how can I implement "cd" like shell in Python?
Christian Heimes
lists at cheimes.de
Thu Jun 28 07:35:38 EDT 2012
More information about the Python-list mailing list
Thu Jun 28 07:35:38 EDT 2012
- Previous message (by thread): how can I implement "cd" like shell in Python?
- Next message (by thread): how can I implement "cd" like shell in Python?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Am 28.06.2012 13:09, schrieb Sergi Pasoev: > Do you mean to implement the cd command ? To what extent do you want to > implement it ? if what you want is just to have a script to change the > current working directory, it is as easy as this: Please note that you can't change the working directory of another process. Your snipplet won't alter the current working directory of the shell. "cd" is a builtin shell command, not a binary. Christian
- Previous message (by thread): how can I implement "cd" like shell in Python?
- Next message (by thread): how can I implement "cd" like shell in Python?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list