create a lock file in bash to avoid duplicate execution

人走茶凉 提交于 2019-12-30 07:49:08

问题


I'm not very good on bash I've been modifying a code to create a lock file so a cron don't execute a second time if the first process hasn't finish.

LOCK_FILE=./$(hostname)-lock
(set -C; : > $LOCK_FILE) 2> /dev/null
if [ $? != "0" ]; then
   echo "already running (lock file exists); exiting..."
exit 1
fi

trap 'rm $LOCK_FILE' INT TERM EXIT

when I run it for the first time I get the message already running as if the file already existed.

Perhaps I'm missing something


回答1:


#!/bin/sh

(
  # Wait for lock on /tmp/lock

  flock -x -w 10 200 || exit 127 # you can use or not use -w

  #your stuff here

) 200> /tmp/lock

check man page flock.

This is the tool for you. And it comes with example in man page :)



来源:https://stackoverflow.com/questions/23529076/create-a-lock-file-in-bash-to-avoid-duplicate-execution

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!