show/hide this revision's text 6 added 38 characters in body

this is the standard approach to create locks using file system. For example, visudo uses it:

[ -f ".lock" ] && exit 1
touch .lock
# do something
rm .lock

1) I'm confused, for there's a race condition, yet Linux uses it

2) is there a better way to lock on files from shell?

3) or do I have to use directories instead?

Found solution: man lockfile.

show/hide this revision's text 5 edited tags
show/hide this revision's text 4 edited title

race condition in the common lock on file?[solved]

show/hide this revision's text 3 man lockfile
show/hide this revision's text 2 added 20 characters in body
show/hide this revision's text 1