Tagged Questions

2
votes
2answers
276 views

bash flock: exit if can't acquire lock

The following lock mechanism is used for preventing a cron job from running concurrently: #!/bin/bash echo "Before critical section" ( flock -e 200 echo "In critical section" sleep 5 ) ...
2
votes
1answer
1k views

Why doesn't bash's flock with timeout exit if it fails to acquire the lock?

I am playing with using flock, a bash command for file locks to prevent two different instances of the code from running more than once. I am using this testing code: ( ( flock -x 200 ; sleep 10 ; ...
2
votes
2answers
808 views

How do I check the exit code of a command executed by flock?

Greetings all. I'm setting up a cron job to execute a bash script, and I'm worried that the next one may start before the previous one ends. A little googling reveals that a popular way to address ...
2
votes
3answers
2k views

How do I use the linux flock command to prevent another root process from deleting a file?

I would like to prevent one of my root processes from deleting a certain file. So I came across the flock command, it seems to fit my need, but I didn't get its syntax. If I only indicate a shared ...