«

shell监控linux系统进程创建脚本分享

时间:2024-3-2 15:37     作者:韩俊     分类: Linux



#!/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

标签: linux

热门推荐