# cat cmd.py
#########################################################################
# -*- coding:utf-8 -*-
# File Name: cmd.py
# Author: lcs
# Mail: liuchengsheng95@qq.com
# Created Time: 2019-03-01 11:29:21
#########################################################################
#!/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)
root目录下的内容
脚本执行结果
网友评论