shell

vim使用中午参考手册

 

1、杀死某关键词进程,启动服务进程为后台运行模式

count=`ps -ef |grep keywords |grep -v "grep" |wc -l`
echo $count
if [ 0 == $count ];then
echo 'no process'
else
ps -ef|grep keywords |grep -v grep|cut -c 9-15|xargs kill -9
fi

nohup ./keywords >/dev/null 2>&1 &

2、查询内存占用最高的4个进程

ps -aux |sort -rnk 4|head -n 5

3、linux下查看进程运行的时间

 ps -eo pid,tty,user,comm,lstart,etime | grep init

参数说明:

pid:进程ID

tty:终端

user:用户

comm:进程名

lstart:开始时间

etime:运行时间

  

  

  

你可能感兴趣的:(shell)