介绍
使用方法
1. 在此脚本的分割线内写入相应的内容
2. 给此脚本添加执行权限
3. 用 python3 命令执行此脚本
脚本分割线里的变量
command=’df -h’ #要执行的 Linux 命令
脚本
import subprocess
####################### Separator ########################
command='df -h' #Linux command to execute
####################### Separator ########################
info = subprocess.check_output('%s'%command, shell=True)
info = info.decode().strip()
lines = info.split('\n')
for line in lines:
word = line.split()[0]
print(word)