进入脚本命令模式后,通过脚本命令记录整个终端并自动执行运行Shell命令的任务

时间:2019-04-04 04:45:32

标签: python shell automation subprocess logfile

import os
while 1:
    print("Press 1              If Do u want to Start Over every step from Begning.")
    print("Press 2              If u want to resume.")
    Be_O_Res=input("************************Enter your choice.************************\n")
    if(Be_O_Res=='1'):
        os.system("script logfile.txt")
        break
    elif(Be_O_Res=='2'):
        os.system("script -a logfile.txt")
        break
    else:
        print("Sorry!!! Please enter a valid Choice.")
os.system("python3 main.py")

我要实现的目标是在进入脚本模式后运行os.system("python3 main.py")命令,以便可以将执行main.py功能时在终端中可见的所有内容记录到日志文件中。

0 个答案:

没有答案