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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T23:51:27+00:00 2026-06-01T23:51:27+00:00

Currently I am using the python os.system(cmd) to do some daily works. Here is

  • 0

Currently I am using the python os.system(cmd) to do some daily works.

Here is one situation, the cmd will take 5-6 minutes to finish, and I run this cmd maually, it works, but when I put it into os.system(cmd), os.system(cmd) will automatically exit when the cmd is not finished yet.

So my question is: how to handle this issue, set timeout value or there is any better way to finish this job ?

Thanks in advance!

  • 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-01T23:51:28+00:00Added an answer on June 1, 2026 at 11:51 pm

    Have you tried the subprocess module? It was added to replace os.system among other older os methods. The following is pretty much straight from the docs:

    import os
    import subprocess
    
    proc = subprocess.Popen(cmd, shell=True)
    pid, sts = os.waitpid(proc.pid, 0)
    
    # you may check on this process later and kill it if it's taking too long
    if proc.poll() in [whatever, ...]:
        os.kill(proc.pid)
    

    or if you’re trying to debug why the process is exiting:

    import subprocess
    import sys
    
    try:
        retcode = subprocess.call(cmd, shell=True)
        if retcode < 0:
            print >>sys.stderr, "Child was terminated by signal", -retcode
        else:
            print >>sys.stderr, "Child returned", retcode
    except OSError, e:
        print >>sys.stderr, "Execution failed:", e
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm currently learning Python using Zelle's Introductory text, and I'm trying to recreate one
I'm currently launching a programme using subprocess.Popen(cmd, shell=TRUE) I'm fairly new to Python, but
I'm currently writing a Python sandbox using sandboxed PyPy. Basically, the sandbox works by
I am currently solving a system of differential equation under python using odeint to
I am currently using a Python 2.5 sample from the ANTLR website. I'm actually
I am using python 3.2 currently and I wanted to do write a code
I am currently using SleekXMPP to build a simple XMPP client in Python. I'm
I'm currently using the toprettyxml() function of the xml.dom module in a Python script
I'm currently working on a project 'email to voice call'. Using python i'v extracted
Is there a way to determine programmatically, using Python, which web page is currently

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.