如何剪切 ps 命令的结果

如何剪切 ps 命令的结果

你能解释一下这个命令吗?48 是什么意思?
ps -laef | cut -c 48- | sort | uniq -c | sort -n

提前致谢

答案1

按部分运行它,你会看到输出如何变化。(在这种情况下应该是安全的)

ps -laef

ps -laef | cut -c 48-

ps -laef | cut -c 48- | sort

ps -laef | cut -c 48- | sort | uniq -c

ps -laef | cut -c 48- | sort | uniq -c | sort -n

查看cut(1) 的手册页解释参数的作用。

-c, --characters=LIST 
    select only these characters

N- 
    from N'th byte, character or field, to end of line

相关内容