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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T16:41:30+00:00 2026-05-23T16:41:30+00:00

I want a script which automates the running of big mathematical computing jobs on

  • 0

I want a script which automates the running of big mathematical computing jobs on a remote machine. Currently I do this:

  • ssh into remote machine; run matlab script
  • periodically check in to see if job is done yet
  • when job is done, I manually scp the files containing the results back to my home machine.

I tried to use these kind of lines in my script to do this job (note the script runs on my machine):

ssh nohup matlab -r theScript; exit;
scp remote@~/files ~/files

This doesn’t work. After a while the ssh session ends and the script just proceeds to do the scp, even though the job is not finished yet and the files don’t exist yet.

I think what I need to do is check periodically whether the job is done, perhaps by ssh’ing in periodically and reading the nohup.out file looking for a DONE! signal using grep. Then when I see that, copy the files back. But this seems complicated and I don’t know how to get the DONE! message back to my computer to run a conditional on (if you see the DONE signal, do this stuff…) any ideas?

  • 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-23T16:41:30+00:00Added an answer on May 23, 2026 at 4:41 pm

    Yeah, the ssh could time out or something. So yeah, you best option is to poll. e.g.

    RUN="$(date +%Y%m%d-%H%M%S)"
    ssh remote " nohup bash -c \"( matlab -r theScript; echo \$? > $RUN.done ) >$RUN.log 2>&1 </dev/null &\" "
    DONE=""
    while [ -z "$DONE" ]
    do
        sleep 60
        DONE="$(ssh cat $RUN.done 2>/dev/null)"
    done
    if [ $DONE -eq 0 ]
    then
        scp ...
    else
        # Optionally fetch logfile
        # scp $RUN.log@remote ...
        echo "ERROR in remote matlab...."
    fi
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to write a script in AutoIt, which can take automatic input from
I want a PHP script which allows you to ping an IP address and
I want to Make selenium script which move slider given on following site Example
I want make a bash script which returns the position of an element from
I have a Perl script which I want to run every 4 hours through
I have a script in which I read html files which I want to
I want to write a script for gdb, which will save backtrace (stack) of
I want to access java script's return value , which in is in a
I want to build a NSIS-script, which has three section section Main section Minor
I want to write a very simple script , which takes a process name

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.