查看有多少活动 httpd 的脚本
1 2 3 4 5 6 |
#!/bin/sh while (true) do pstree |grep "*\[httpd\]$"|sed 's/.*-\([0-9][0-9]*\)\*\[httpd\]$/\1/' sleep 3 done |
码农网 | 码农之家 | 码农人生 | 经验 | 分享 | 下载
代码积累,程序案例,经验分享,职场面试,码农人生,免费下载
查看有多少活动 httpd 的脚本
1 2 3 4 5 6 |
#!/bin/sh while (true) do pstree |grep "*\[httpd\]$"|sed 's/.*-\([0-9][0-9]*\)\*\[httpd\]$/\1/' sleep 3 done |
Begin typing your search term above and press enter to search. Press ESC to cancel.