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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T14:09:57+00:00 2026-06-12T14:09:57+00:00

I have a script that starts background processes. #!/bin/sh ./process1.sh & ./process2.sh & I

  • 0

I have a script that starts background processes.

#!/bin/sh

./process1.sh &
./process2.sh &

I need to kill these processes using a separate script.
Here is what I did:

#!/bin/sh
# the kill.sh

pid=$(ps | grep './process1.sh' |grep -v grep| awk '{print $1}')
kill -9 $pid

Question time:

  1. When the kill.sh is called processes are stoped. But I get the message

    “sh: you need to specify whom to kill”.
    Why is that?

  2. After I kill the process using the described script, it doesn’t stop immediately.For a while I see the output on the screen as if the process is still running. Why?

  3. What could be an alternative solution to kill the processes?

Worth to mention that I am working with busybox do I have limited choice of utilities.

  • 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-12T14:09:59+00:00Added an answer on June 12, 2026 at 2:09 pm

    You could store the process ids in a temporary file like this:

    #!/bin/sh
    
    ./process1.sh &
    echo $! > /tmp/process1.pid
    ./process2.sh &
    echo $! > /tmp/process2.pid
    

    and then delete it with your script. $! returns the PID of the process last executed.

    kill -9 `cat /tmp/process*.pid`
    rm /tmp/process*.pid
    

    Make sure the process*.pid files get deleted after the corresponding script is finished.

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

Sidebar

Related Questions

I have two processes: a server that should be run in background, but starts
Background I have an R script that runs on a host, and starts jobs
I have a script that starts Tomcat and it looks like this: rem set
I have a batch script that looks like this: Test.bat @echo off :: Starts
The script I have written outputs all lines from the file 2 that starts
I have a shell script, which is run under a opensuse linux, that starts
I'm using Python 2.6 on linux. I have a run.py script which starts up
I have a PHP script that launches another script in the background. Recently my
I have a bash script that has this function in it: function start_vi() {
I have a very simple script that creates a user: <?php include 'mysqlserver.php'; session_start();

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.