编写脚本,实现同一个脚本多次运行,系统中只有一个进程root@nfsscripts]#catpid.sh#!/bin/sh
pidpath=/tmp/a.pid
if[-f"$pidpath"]
then
kill`cat$pidpath`>/dev/null2>&1
rm-f$pidpath
fi
echo$$>$pidpath
sleep300测试如下root@nfsscripts]#ps-ef|greppid.sh|..
分类:
系统相关 时间:
2017-05-20 23:41:06
阅读次数:
269