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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T23:48:56+00:00 2026-06-12T23:48:56+00:00

bellow is my cronjob script what i want to only wait for 3rd_job completion

  • 0

bellow is my cronjob script what i want to only

wait for 3rd_job completion for starting 4th,5th

& wait for 2nd_job completion for starting 6,7,8th job.

how can i achieve this thanks in advance

currently for starting 4,5th job it is waiting for the completion of 1,2,3th job but i just want to wait for 3rd for starting 4,5th and wait for only 2nd completion for stating 6,7,8th

    #!/bin/bash
    cd /home/ubuntu/
    PATH=$PATH:/usr/local/bin
    export PATH
    nohup scrapy crawl 1st_job &
    nohup scrapy crawl 2nd_job &
    nohup scrapy crawl 3rd_job &
    wait $(pgrep 3rd_job)
    nohup scrapy crawl 4th_job &
    nohup scrapy crawl 5th_job &
    wait $(pgrep 2nd_job)
    nohup scrapy crawl 6th_job &
    nohup scrapy crawl 7th_job &
    nohup scrapy crawl 8th_job &
  • 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-12T23:48:58+00:00Added an answer on June 12, 2026 at 11:48 pm

    You can use the $! variable that contains the PID of the last spawned asynchronous task:

    #!/bin/bash
    cd /home/ubuntu/
    PATH=$PATH:/usr/local/bin
    export PATH
    nohup scrapy crawl 1st_job &
    nohup scrapy crawl 2nd_job &
    pid_2nd="$!"
    nohup scrapy crawl 3rd_job &
    wait $!
    nohup scrapy crawl 4th_job &
    nohup scrapy crawl 5th_job &
    wait $pid_2nd
    nohup scrapy crawl 6th_job &
    nohup scrapy crawl 7th_job &
    nohup scrapy crawl 8th_job &
    

    If you want something a little more complex, for instance execute in a directed acyclic graph fashion (for example as soon as 3rd finishes start 4-5 and as soon 2nd finishes start 6-8) I suggest you reorganize the calls into functions, so that they can be called asynchronously:

    #!/bin/bash
    second () {
        nohup scrapy crawl 2nd_job
        nohup scrapy crawl 6th_job &
        nohup scrapy crawl 7th_job &
        nohup scrapy crawl 8th_job &
    }
    
    third () {
        nohup scrapy crawl 3rd_job
        nohup scrapy crawl 4th_job &
        nohup scrapy crawl 5th_job &
    }
    
    cd /home/ubuntu/
    PATH=$PATH:/usr/local/bin
    export PATH
    nohup scrapy crawl 1st_job &
    third &
    second &
    

    Hope this helps =)

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

Sidebar

Related Questions

I want to create cron job that runs a script every 5 seconds. Seeing
I'm using the bellow script to get login dialogue box when the user click's
The code bellow is the small starting point for a new way ( for
The start up script bellow mounts a network drive in my macbook: try tell
i am running python scripts on a ubuntu server though cronjob bellow is my
when running a cron job like this: curl http://example.com/cronjob.php The output email contains this:
My server is centos 5.7. I need a script work with cron job that
I have a CakePHP script that should hopefully be run by a cron job.
I'm currently using a cron job to have a perl script that tells my
I am having the bellow function . Here i want to return ajax success

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.