Skip to content

Instantly share code, notes, and snippets.

@cfedde
Created November 10, 2013 05:21
Show Gist options
  • Save cfedde/7394148 to your computer and use it in GitHub Desktop.
Save cfedde/7394148 to your computer and use it in GitHub Desktop.
flocking the data handle.
use Fcntl ':flock'; # import LOCK_* constants
unless ( flock DATA, LOCK_EX | LOCK_NB ) {
print STDERR "Found duplicate script run. Stopping\n";
exit(0);
}
...
__DATA__
This exists to allow the locking code at the beginning of the file to work.
DO NOT REMOVE THESE LINES!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment