使用os模块

时间:2016-01-26 09:32:44

标签: python bash os.system

import os 
cmd='for file in /proc/*/status ; do awk \'/VmSwap/||/^Pid/||/Name/{printf "%-20s", $2 $3}END{ print""}\' $file; done | sort -nr -k 3  | head -5'
os.system(cmd)

输出,我添加了#,我的问题是,为什么我的管道错误,最后两行。

>>> res = os.system(cmd)

sort:写入失败:标准输出:管道损坏

sort:写错误

0 个答案:

没有答案