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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T02:40:37+00:00 2026-05-21T02:40:37+00:00

Infinite loop on bash script and I want to run forever but (I guess)

  • 0

Infinite loop on bash script and I want to run forever but (I guess) something goes wrong script is killed. Is there any way like try-catch, just continue to running forever, unconditionaly.

#!/bin/bash


 iteration=0

 for (( ; ; ))
 do
    process_id=`ps -ef | grep java | grep TEST | awk '{print $2}' `
    kill_command='kill -3 '$process_id
    time=`date | awk '{print substr($4,0,5)}' `
    last_write=`ls -l /files/*.txt | awk '{print $8}' `

    if [ "$time" != "$last_write" ]
    then
            $kill_command
            sleep 1

            $kill_command
            sleep 1

            $kill_command
            sleep 1

            /test/show_queue.sh
    fi

    let "iteration+=1"

    if [ "$iteration" == "30" ] 
    then
            let "iteration=0"
            $kill_command
            echo '------------' >> memory_status.log
            date >> memory_status.log
            prstat -n 7 1 1 >>  memory_status.log
            echo '------------' >> memory_status.log
            /test/show_queue.sh
    fi

    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-21T02:40:38+00:00Added an answer on May 21, 2026 at 2:40 am

    A very simple way to do it is to use two scripts. One with the loop and one which does the killing task :

    for (( ; ; ))
    do
      DoKillingTask
      rc=$? # <- You get the return code of the script and decide what to do
    done
    

    If it continues to be killed, Mikel (in comment of your question) is right.

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

Sidebar

Related Questions

I have a PHP script with infinite loop. I need this script running forever.
I have an infinite loop that I want to sleep for a second but
i want to run a infinite loop in c#. the structure i have is
If I have a thread in an infinite loop, is there a way to
When a simple Thread is run with just an infinite loop in it causing
I am developing a command line script which runs in an infinite loop. After
So, I am needing to run an infinite loop in the background of my
I would like to have a script with an infinite loop, that kills all
I'm beginning to learn javascript and I wrote an infinite loop <script> while(1==true){ document.write(hello
I have a long running php script which is basically an infinite loop listening

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.