Hacker News new | ask | show | jobs
by 0xbadcafebee 136 days ago
You can use `ln` atomicity for a simple, portable(ish) locking system: https://gist.github.com/pwillis-els/b01b22f1b967a228c31db3cf...
2 comments

Really nice explanation of a useful pattern. I was surprised to discover that even the famously broken NFS honours atomicity of hardlink creation.
I use `mkdir` for a locking mechanism quite frequently. It also provides me an area to put stuff during the script runs.