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 7743749
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T09:36:53+00:00 2026-06-01T09:36:53+00:00

In a Bash script, I would like to do something like: app1 & pidApp1=$!

  • 0

In a Bash script, I would like to do something like:

app1 &
pidApp1=$!
app2 &
pidApp2=$1

timeout 60 wait $pidApp1 $pidApp2
kill -9 $pidApp1 $pidApp2

I.e., launch two applications in the background, and give them 60 seconds to complete their work. Then, if they don’t finish within that interval, kill them.

Unfortunately, the above does not work, since timeout is an executable, while wait is a shell command. I tried changing it to:

timeout 60 bash -c wait $pidApp1 $pidApp2

But this still does not work, since wait can only be called on a PID launched within the same shell.

Any ideas?

  • 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. Editorial Team
    Editorial Team
    2026-06-01T09:36:54+00:00Added an answer on June 1, 2026 at 9:36 am

    Write the PIDs to files and start the apps like this:

    pidFile=...
    ( app ; rm $pidFile ; ) &
    pid=$!
    echo $pid > $pidFile
    ( sleep 60 ; if [[ -e $pidFile ]]; then killChildrenOf $pid ; fi ; ) &
    killerPid=$!
    
    wait $pid
    kill $killerPid
    

    That would create another process that sleeps for the timeout and kills the process if it hasn’t completed so far.

    If the process completes faster, the PID file is deleted and the killer process is terminated.

    killChildrenOf is a script that fetches all processes and kills all children of a certain PID. See the answers of this question for different ways to implement this functionality: Best way to kill all child processes

    If you want to step outside of BASH, you could write PIDs and timeouts into a directory and watch that directory. Every minute or so, read the entries and check which processes are still around and whether they have timed out.

    EDIT If you want to know whether the process has died successfully, you can use kill -0 $pid

    EDIT2 Or you can try process groups. kevinarpe said: To get PGID for a PID(146322):

    ps -fjww -p 146322 | tail -n 1 | awk '{ print $4 }'
    

    In my case: 145974. Then PGID can be used with a special option of kill to terminate all processes in a group: kill -- -145974

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to call a Python script from within a Bash while loop.
I want to make a bash script that works like a makefile. It would
I am learning bash. I would like to do a simple script that, when
I would like to do something like this: chroot /mount-point /path/to/script $var1 $var 2
In a bash script I would like to parse the names of all subdirectories
I can do something like this in bash: myCommand arg1 arg2 2>&1 >> myLogFolder/myLogFile.log
I would like to reference a variable that I have in a bash script
In a bash script, I would like to put the following code that assigns
I would like to extract the subdirectory name using a bash script from a
I have a BASH script which runs other commands and I would like to

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.