前言
当shell脚本中需要执行的步骤较多、耗时较长时,为了避免脚本被其它进程重复执行导致操作逻辑被打乱,需要使该脚本同一时间内只能被一个进程执行,类似C# 中的lock 代码块操作,确保线程安全
代码
#!/bin/bash
# 创建文件锁路径
lock_file=/tmp/my_script.lock
# 信号处理函数
function cleanup() {
rm -f "$lock_file"
exit 1
}
# 在中断和退出脚本执行时,删除掉文件锁
trap cleanup 2 Exit
# 使用 flock 命令创建文件锁并执行脚本
(
flock -n 9 || {echo "script is executing by another process! exited";exit 1;}
# 此处为脚本主要内容
echo "Start executing the script..."
#do something
echo "Finish executing the script."
exit 0
) 9>"$lock_file"
标签:脚本,shell,script,lock,linux,executing,exit,多次重复,执行
From: https://www.cnblogs.com/Mxy-cnblog/p/17844387.html