码迷,mamicode.com
首页 > 系统相关 > 详细

实现同一个脚本多次运行,系统中只有一个进程

时间:2017-05-20 23:41:06      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:脚本多次运行


编写脚本,实现同一个脚本多次运行,系统中只有一个进程

root@nfs scripts]#cat pid.sh

#!/bin/sh
pidpath=/tmp/a.pid
if [ -f "$pidpath" ]
  then
    kill `cat $pidpath` >/dev/null 2>&1
    rm -f $pidpath
fi

echo $$ >$pidpath
sleep 300


测试如下

root@nfs scripts]# ps -ef|grep pid.sh|grep -v grep

[root@nfs scripts]# sh pid.sh &

[1] 3883

[root@nfs scripts]# ps -ef|grep pid.sh|grep -v grep

root       3883   1297  0 20:36 pts/0    00:00:00 sh pid.sh

[root@nfs scripts]# sh pid.sh &

[2] 3890

[root@nfs scripts]# sh pid.sh &

[3] 3894

[1]   Terminated              sh pid.sh

[root@nfs scripts]# sh pid.sh &

[4] 3898

[2]   Terminated              sh pid.sh

[root@nfs scripts]# ps -ef|grep pid.sh|grep -v grep

root       3898   1297  0 20:36 pts/0    00:00:00 sh pid.sh

[3]-  Terminated              sh pid.sh


本文出自 “知识改变命运” 博客,请务必保留此出处http://ahtornado.blog.51cto.com/4826737/1927820

实现同一个脚本多次运行,系统中只有一个进程

标签:脚本多次运行

原文地址:http://ahtornado.blog.51cto.com/4826737/1927820

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!