shell监控linux系统进程创建脚本分享
程序员文章站
2023-08-16 14:54:43
复制代码 代码如下:#!/bin/shwhile truedo ps ax -o command | sort | uniq > 1.txt us...
复制代码 代码如下:
#!/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系统进程创建脚本分享
-
shell脚本监控linux系统内存使用情况的方法(不使用nagios监控linux)
-
一个Linux系统安全设置的Shell脚本的分享(适用CentOS)
-
一个监控LINUX目录和文件变化的Shell脚本分享
-
一个监控Squid运行进程数并自动重启的简洁Shell脚本分享
-
linux进程监控shell脚本代码
-
Shell脚本判断Linux系统是32位还是64位的几种方法分享
-
shell监控linux系统进程创建脚本分享
-
linux系统使用python监控apache服务器进程脚本分享
-
shell脚本监控linux系统内存使用情况的方法(不使用nagios监控linux)