使用以下方法即可使用python实现命令行提示符:
import os
# print(os.system('ls'))
# print(os.system('pwd'))
for i in range(1000):
cmd = input('[test@ ~]$ ]')
if cmd:
if cmd == 'exit':
print('logout')
break
else:
print('run %s' %(cmd))
运行shell命令
os.system(cmd)
else:
continue