所以我在python py文件中运行命令
myNewShell = os.system('start "%s" /d "%s" cmd /f:on /t:0A /k "W:\\Desktop\\alias.bat"' % (myShot, myWorkDir))
这会打开一个shell
我将如何直接从我的python脚本输入一些东西到这个shell中,从而绕过你的实际cmd.exe。我有一堆DOSKEY设置,比如maya打开了maya程序。我如何在我的python脚本中添加一行代码,以便它用这些别名加载shell并直接输入我的命令
答案 0 :(得分:1)
查看功能强大且有用的subprocess模块
然后您可以执行此类代码
import subprocess
pro = subprocess.Popen("cmd", stdout=subprocess.PIPE, stdin=subprocess.PIPE)
pro.stdin.write("mybat.bat\n")
pro.stdin.write("myother.bat\n")
pro.stdin.write("start mysillyprogram\n")
pro.stdin.flush()
pro.terminate() # kill the parent