0x00 os模块
os.system(cmd) 返回值shell指令运行后状态码
0x01 os.popen
以文件形式返回shell 需要获取内容时可以使用read()和readlines()
0X02 commands模块
- commands.getstausoutput(cmd)字符串输出结果和状态码 status,output
- commands.getoutput(cmd)输出结果
0x03 subprocess模块
允许创建很多子线程,创建时可以指定子进程的输入输出,执行结果和执行状态