Skip to content

Instantly share code, notes, and snippets.

@paulmars
Created June 20, 2015 02:25
Show Gist options
  • Select an option

  • Save paulmars/77d2a757ab4f1bc99028 to your computer and use it in GitHub Desktop.

Select an option

Save paulmars/77d2a757ab4f1bc99028 to your computer and use it in GitHub Desktop.
lock a script to run once
unless open(__FILE__).flock(File::LOCK_EX | File::LOCK_NB)
puts "script already running..."
exit
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment