摘要:
方法一、使用os模块的system方法:os.system(cmd), 其返回值是shell指令运行后返回的状态码, int类型, 0--表示shell指令成功执行, 256--表示shell未找到, 该方法适用于shell命令不需要输出内容的场景。 方法二、使用os.popen(), 该方法以文件 阅读全文
摘要:
#!/bin/bash # Linux Check Script # author :liupeng dat=`date +%Y-%m-%d` mem=`free -m |grep "Mem" |awk -F ' ' '{print $2}'` vers=`cat /etc/centos-relea 阅读全文