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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T00:11:30+00:00 2026-06-06T00:11:30+00:00

I am using the subprocess module to find out if a process is running.

  • 0

I am using the subprocess module to find out if a process is running. But the result is different when the process to find does not exist.

For example, in the shell, if the process python test.py does not exist, the output of ps -ef|grep python|grep test|awk '{print $2}' is empty. But in python:

cmd="ps -ef|grep python|grep test|awk '{print $2}'"
vp=subprocess.Popen(cmd,stdout=subprocess.PIPE,shell=True)
r=vp.communicate()[0]

The output r is not None. It is the pid of the shell executing cmd.

So how to get the desired result?

  • 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-06T00:11:31+00:00Added an answer on June 6, 2026 at 12:11 am

    While the shell subprocess is running, its arguments are visible to ps since they are passed as a command line to sh.

    shell=True works by invoking ['/bin/sh', '-c', cmdstring].

    When you type a pipeline in the shell, each part of the pipeline is invoked separately so there is no process with both “python” and “test” in its arguments.

    Your process tree looks like this:

    python script.py
        /bin/sh -c "ps -ef|grep python|grep test|awk '{print $2}'"
            ps -ef
            grep python
            grep test
            awk '{print $2}'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm currently launching a programme using subprocess.Popen(cmd, shell=TRUE) I'm fairly new to Python, but
I am using subprocess module for running commands from another app I know that
I have some commands which I am running using the subprocess module. I then
I'm making a call to a program from the shell using the subprocess module
How do I execute the following shell command using the Python subprocess module? echo
I am using the subprocess module like that: ping = subprocess.Popen('fping.exe 192.168.2.3 196.65.58.69', stdout=PIPE)
I have a python based tkinter script which executes some commands using subprocess module.
I'm trying to execute a series of commands using Pythons subprocess module, however I
I've been trying to communicate with a program (smbpasswd) using Python's subprocess module without
I'm using Perl's module File::Find to traverse across a directory. This directory is an

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.