如何使用python进行shell导航

时间:2013-01-26 20:10:48

标签: python linux shell navigation popen

我想使用python cd到另一个目录,我希望在shell上运行此命令以导航到该目录。

command = 'cd ../../../'  
os.popen(command)  

这应该将我的shell导航到新目录

1 个答案:

答案 0 :(得分:2)

import os
os.chdir('/path/to/dir')

os.chdir的文档是here