delete_file_stop.sh
415 Bytes
# 创建日期:2016年12月7日
# 作者:石晓旭
# 脚本描述:结束删除录音脚本。
# 使用方法:crontab -e 添加如下
# 0 6 * * 0 /sbin/delete_file_stop.sh
#!/bin/bash
cnt=`ps -ef |grep "delete_file_start.sh" |grep -v "grep" | grep -v "vim" | wc -l`
if [ ${cnt} -ge 1 ]
then
pid=`ps -aux | grep "delete_file_start.sh" | grep -v "grep"| awk '{print $2}'`
kill -9 ${pid}
fi