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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T10:14:11+00:00 2026-05-18T10:14:11+00:00

I want to run some application in background and later kill it by pid.

  • 0

I want to run some application in background and later kill it by pid.

pipe = IO.popen("firefox 'some_url' 2>&1 &")
pipe.pid

This code starts firefox and return me some pid, but unfortunately it’s not firefox’s pid.

pipe = IO.popen("firefox")
pipe.pid

This code starts firefox and return mi some pid, firefox’s pid.
Is there any solution to start external application and get its pid? Firefox is only for example it could be any other application. I also tried with libs like: Open3 and Open4 but seems to be the same effect.
I also wonder if ‘$!’ bash variable is good solution for this? Run something in background and read ‘$!’, what do you think?

  • 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-18T10:14:12+00:00Added an answer on May 18, 2026 at 10:14 am

    Since you are running it in the background (command &), you get the interpreter’s PID:

    >> pipe = IO.popen("xcalc &")
    >> pipe.pid 
    => 11204
    
    $ ps awx | grep "pts/8"
    11204 pts/8    Z+     0:00 [sh] <defunct>
    11205 pts/8    S+     0:00 xcalc
    

    Drop the &:

    >> pipe = IO.popen("xcalc")
    >> pipe.pid
    => 11206
    
    $ ps awx | grep "pts/8"
    11206 pts/8    S      0:00 xcalc
    

    For the additional issue with the redirection, see @kares’ answer

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

Sidebar

Related Questions

In my Android application, I want to run some form of a background process,
I have a web application that I want to run some system tests on,
I want my C# WinForms app to run some code when either the app
I'd like to run some arbitrary user code in a Silverlight application. Of course
I have to run some background tasks whenever an application is activated / or
I want to run background process in parallel with my spring-mvc web-application. I need
I want to create a background thread on the iPhone that executes some code
I want to run some basic checks when my ASP.NET server goes up. Mostly
i want to run some command on several machine using ssh. I know it
I want to run some Python unit tests from my Maven module. I have

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.