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

  • Home
  • SEARCH
  • 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 6888423
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:00:50+00:00 2026-05-27T06:00:50+00:00

I need to implement a shell script that kills a process. The problem is

  • 0

I need to implement a shell script that kills a process. The problem is that I need to do a conditional to be able to see if the process is running or not.

This is my code, but it is not working:

#!/bin/sh

if [ -x  "MY_PROCCESS_NAME"]; then
    killall MY_PROCCESS_NAME
else
    echo "Doesn't exist"
fi

This is the error:

line 3: [: missing `]'
  • 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-27T06:00:50+00:00Added an answer on May 27, 2026 at 6:00 am

    to check if a process is running on mac os x you can use:

    pid=$(ps -fe | grep 'process name' | grep -v grep | awk '{print $2}')
    

    if you want to reduce the number of shell scripts you can enclose one of the characters of the name of the process in square brackets:

    pid=$(ps -fe | grep '[p]rocess name' | awk '{print $2}')
    

    combined in your test this would look like:

    pid=$(ps -fe | grep '[p]rocess name' | awk '{print $2}')
    if [[ -n $pid ]]; then
        kill $pid
    else
        echo "Does not exist"
    fi
    

    it’s a little more complicated than you would need to do under linux as you generally have the ‘pgrep’ command, which is the rough equivalent of the ‘ps -fe | grep … | grep -v grep’

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

Sidebar

Related Questions

I need to implement the following feature for my device running embedde linux on
I know this is not a straight up question, so if you need me
I need to implement a Windows Virtual Disk that is visible as a separate
I need to implement a few commands of Linux shell for my homework -
I am trying to create a shell script that pulls a line from a
A long running shell script produces stdout and stderr, which I would like to
I'm writing a shell script that opens a file and needs to find a
I am writing my own shell and need to implement a history feature where
In this previous question I posted most of my own shell code. My next
I need to implement a Diff algorithm in VB.NET to find the changes between

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.