首页 > 系统服务 > 详细

linux ps sample

时间:2019-11-10 16:16:55      阅读:78      评论:0      收藏:0      [点我收藏+]
ps -ef|grep "myswooleserver.php"| grep -v "grep" | wc -l
4
cpc@cpc-Aspire-6935:~/Downloads$ ps -ef|grep "myswooleserver.php"| grep -v "grep" 
cpc      16849 16472  0 15:06 pts/3    00:00:00 php /home/cpc/Downloads/myswooleserver.php
cpc      16850 16849  0 15:06 pts/3    00:00:00 php /home/cpc/Downloads/myswooleserver.php
cpc      16853 16850  0 15:06 pts/3    00:00:00 php /home/cpc/Downloads/myswooleserver.php
cpc      16854 16850  0 15:06 pts/3    00:00:00 php /home/cpc/Downloads/myswooleserver.php
cpc@cpc-Aspire-6935:~/Downloads$ ./myswoolelauncher.sh
4
cpc@cpc-Aspire-6935:~/Downloads$ ./myswoolelauncher.sh
0
cpc@cpc-Aspire-6935:~/Downloads$ ps -fe|grep "myswooleserver.php"| grep -v "grep" 
cpc      17113 16472  0 15:14 pts/3    00:00:00 php /home/cpc/Downloads/myswooleserver.php
cpc      17114 17113  0 15:14 pts/3    00:00:00 php /home/cpc/Downloads/myswooleserver.php
cpc      17117 17114  0 15:14 pts/3    00:00:00 php /home/cpc/Downloads/myswooleserver.php
cpc      17118 17114  0 15:14 pts/3    00:00:00 php /home/cpc/Downloads/myswooleserver.php
cpc@cpc-Aspire-6935:~/Downloads$ ps -eaf |grep "myswooleserver.php" | grep -v "grep"| awk {print $2}
17113
17114
17117
17118
cpc@cpc-Aspire-6935:~/Downloads$ ps -eaf |grep "myswooleserver.php" | grep -v "grep"| awk {print $2}|xargs
17113 17114 17117 17118

some of  them

linux ps sample

原文:https://www.cnblogs.com/saintdingspage/p/11830370.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!