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