复制代码 代码如下:
#!/bin/sh
while true
do
ps ax -o command | sort | uniq > 1.txt
usleep 100000
ps ax -o command | sort | uniq > 2.txt
diff 1.txt 2.txt | grep '^\+[^\+]' | while read a
do
a=`echo ${a#*+}`
if [[ "$a" != "uniq" ]] [[ "$a" != "sort" ]] [[ "$a" != "" ]]
then
echo $a
fi
done
done
您可能感兴趣的文章:- Shell脚本实现Linux系统和进程资源监控
- python实现监控linux性能及进程消耗性能的方法
- linux进程监控shell脚本代码
- linux系统使用python监控apache服务器进程脚本分享
- Linux 监控文件被什么进程修改(详解)
- 详解Linux监控重要进程的实现方法
- Linux工具之Nethogs按进程监控网络带宽的安装部署
- linux下监视进程 崩溃挂掉后自动重启的shell脚本
- linux自动重启tomcat脚本分享
- linux下通过脚本实现自动重启程序
- linux进程监控与自动重启的简单实现方法