shaoheshaohe 发表于 2021-7-22 11:13:23

使用 subprocess 获取命令返回值以及命令执行的状态

#!/usr/bin/python3

import subprocess,os

status,res = subprocess.getstatusoutput('ls /root')


print("status is %d" % status)


for d in res.split('\n'):
    f = '/root/' + d
    if os.path.isdir(f):
       print("%s is dir!" % f)
   else:
       print("%s is not dir!" % f)

shaoheshaohe 发表于 2021-7-22 11:14:51

https://www.jianshu.com/p/1c080b8458e4
页: [1]
查看完整版本: 使用 subprocess 获取命令返回值以及命令执行的状态