Skip to content

Instantly share code, notes, and snippets.

@jpclipffel
Last active July 15, 2025 15:45
Show Gist options
  • Select an option

  • Save jpclipffel/0b8f470be029fc9e3f07 to your computer and use it in GitHub Desktop.

Select an option

Save jpclipffel/0b8f470be029fc9e3f07 to your computer and use it in GitHub Desktop.
Bash flock example
#!/bin/bash
#
# Bash `flock` example.
# Works on: Linux, BSD
# Doesn't work on: MacOS
# The file which represent the lock.
LOCKFILE="`basename $0`.lock"
# Timeout in seconds.
TIMEOUT=2
# Create the lockfile.
touch $LOCKFILE
# Create a file descriptor over the given lockfile.
exec {FD}<>$LOCKFILE
# Try to lock the file descriptor $FD during $TIMEOUT seconds.
# If it failsm exit with an error.
# Otherwise, the lock is acquired and implicitely droped at the end of the script.
if ! flock -x -w $TIMEOUT $FD; then
echo "Failed to obtain a lock within $TIMEOUT seconds"
echo "Another instance of `basename $0` is probably running."
exit 1
else
echo "Lock acquired"
fi
@nkh
Copy link

nkh commented Jun 9, 2023

also found flock man page

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment