Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Typo

...

There are several approaches to handle exit codes and file transfer. The preferred solution depends on whether the respective job is an order job or standalone job and whether a shell or API script is being executed.

  • The simplest solution is to specify an exit code at the end of a shell script. For example:

     
    Code Block
    languagebash
    titleExample shell script exit function
     exit 5
    

The handling of exit codes is covered in two sections of our JobScheduler FAQs:

...