欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

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