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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T07:18:22+00:00 2026-05-30T07:18:22+00:00

I was learning bash with a book called learning the bash shell. All was

  • 0

I was learning bash with a book called learning the bash shell. All was well until I came across the kill command. I created a little script called loop, then ran it using loop &. When I use kill %loop, then use ps -e | grep loop, the process is still there. So did I fail to kill it? Do I have to use kill -9? Also,pidof seemed to not work at all when I use pidof loop. It returns nothing at all.

I am using Ubuntu and bash. Although I think the script shouldn’t matter, here it is just in case:

#! /bin/bash
# Just a script
while true; do
    sleep 60
done
  • 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-05-30T07:18:24+00:00Added an answer on May 30, 2026 at 7:18 am

    Shell scripts don’t run as the name of the script. They run as the name of the shell you specify in the shebang. In your case, that’s /bin/bash. If you’d done pidof bash you’d have gotten the pid of your script (along with all the other bash scripts running at the time).

    That being said, you can’t kill scripts by their name, as you’re trying with kill %loop. Kill only accepts pids. If you’re using the % notation, then that refers to the internal job number assigned by the shell. e.g, using your loop script as an example:

    $ ./loop &  <-- first run of loop script
    [1] 8077    <--- job #1, running as pid 8077
    $ ./loop &  <--- second run of loop script
    [2] 8079    <-- job #2, running as pid 8079
    $ jobs
    [1]-  Running                 ./loop &
    [2]+  Running                 ./loop &
    $ kill %2
    $ jobs
    [1]-  Running                 ./loop &
    [2]+  Terminated              ./loop    <-- note, showing 'terminated' now
    $ kill -9 8077
    $ jobs
    [1]+  Killed                  ./loop
    $ jobs
    $
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am learning bash. I would like to do a simple script that, when
I'm in the process of writing a bash script (just learning it) which needs
I'm still learning Bash and I'm having a problem with my script. I want
I have created a Bash script and I have some rather fugly arguments validation.
I have created a little password generation script. I'm curious to what improvements can
Learning javascript when I came across the concept of prototype. I succeeded in adding
Is there a way of handling invers bash v4 shell expansion, ie. treat all
I have committed to learning C now, I'm good with Python/PHP/Bash but I've decided
Learning a little about T-SQL, and thought an interesting exercise would be to generate
I have searched and searched.. I have a bash script that is used 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.