标签: python subprocess
//启动perl脚本
os.system('。/ start.pl')
//使用命令并将o / p重定向到文件
os.system('make> file')
我是Python的初学者。
每当我运行perl脚本(start.pl)时,都会创建新的子进程并且shell进入新的子shell并且python脚本中的其余行未被输入。
请在shell进入新的子shell后帮助我运行其他命令。