Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 84761
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T21:58:56+00:00 2026-05-10T21:58:56+00:00

A typical approach to avoid two instances of the same script running simultaneously looks

  • 0

A typical approach to avoid two instances of the same script running simultaneously looks like this:

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

Is there a better way to lock on files from a shell-script, avoiding a race condition? Must directories be used instead?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T21:58:57+00:00Added an answer on May 10, 2026 at 9:58 pm

    Yes, there is indeed a race condition in the sample script. You can use bash’s noclobber option in order to get a failure in case of a race, when a different script sneaks in between the -f test and the touch.

    The following is a sample code-snippet (inspired by this article) that illustrates the mechanism:

    if (set -o noclobber; echo '$$' > '$lockfile') 2> /dev/null;  then    # This will cause the lock-file to be deleted in case of a    # premature exit.    trap 'rm -f '$lockfile'; exit $?' INT TERM EXIT     # Critical Section: Here you'd place the code/commands you want    # to be protected (i.e., not run in multiple processes at once).     rm -f '$lockfile'    trap - INT TERM EXIT else    echo 'Failed to acquire lock-file: $lockfile.'     echo 'Held by process $(cat $lockfile).' fi 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 174k
  • Answers 174k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer py> import urlparse,socket py> p = urlparse.urlparse("http://stackoverflow.com/questions/1480183") py> p ('http',… May 12, 2026 at 2:47 pm
  • Editorial Team
    Editorial Team added an answer Found a workaround: /Applications/MyApp.app/Contents/MacOS/MyApp >/dev/null 2>/dev/null & Using that command… May 12, 2026 at 2:47 pm
  • Editorial Team
    Editorial Team added an answer Because conceivably getList() could be returning a subclass of HashMap… May 12, 2026 at 2:47 pm

Related Questions

Say we have this scenario: Artist ==< Album ==< Track //ie, One Artist can
What is a typical approach to using the repository pattern with .NET 1.1 (C#)?
I have a directory that continually fills up with artefact files. Many different programs
I have a 3rd party DLL that needs to be loaded dynamically using LoadLibrary()

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.