当前位置: 技术问答>linux和unix
请教大虾,ps aux 的问题,在此谢过!
来源: 互联网 发布时间:2016-03-09
本文导语: 比如说,我运行了bash compare_test.sh 然后另开一终端,运行ps aux | grep compare_test.sh 得到结果: freeman 6124 0.0 0.1 4520 1464 pts/0 S+ 10:23 0:00 bash compare_test.sh freeman 6167 0.0 0.0 3252 7...
比如说,我运行了bash compare_test.sh
然后另开一终端,运行ps aux | grep compare_test.sh
得到结果:
freeman 6124 0.0 0.1 4520 1464 pts/0 S+ 10:23 0:00 bash compare_test.sh
freeman 6167 0.0 0.0 3252 752 pts/1 S+ 10:24 0:00 grep compare_test.sh
问题:怎么在脚本中判断我查询结果中有上面的第一条?
谢谢!
然后另开一终端,运行ps aux | grep compare_test.sh
得到结果:
freeman 6124 0.0 0.1 4520 1464 pts/0 S+ 10:23 0:00 bash compare_test.sh
freeman 6167 0.0 0.0 3252 752 pts/1 S+ 10:24 0:00 grep compare_test.sh
问题:怎么在脚本中判断我查询结果中有上面的第一条?
谢谢!
|
ps aux | awk '{if($NF=="bash compare_test.sh") print $0}'