zoukankan      html  css  js  c++  java
  • linux ps sample

    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

  • 相关阅读:
    getText() 获取properties中的变量
    Vue----渐进式框架的理解
    appium---学习
    css----overflow(布局)
    css----display(显示) 与 Visibility(可见性)
    css----position(定位)
    中秋节
    找工作清闲的一天
    两天没有好好休息的感觉
    开始正式步入找工作的节奏
  • 原文地址:https://www.cnblogs.com/saintdingspage/p/11830370.html
Copyright © 2011-2022 走看看