Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • JobScheduler provides a number of environment variables that are available to all jobs.the job tasks environment
  • These environment variables are valid on the host where JobScheduler Master and Agent are executed. 
  • Use of the environment variable syntax depends on the operating system:
    • For Windows use %SCHEDULER_JOB_NAME%
    • For Unix use $SCHEDULER_JOB_NAME or ${SCHEDULER_JOB_NAME}
  • Mixed spelling with uppercase and lowercase letters is handled differently depending on the operating system:
    • For Windows any mixed spelling can be used, i.e. %SCHEDULER_JOB_NAME%, %Scheduler_Job_Name%, %SCHEDULER_job_name% will address the same environment variable.
    • For Unix the exact spelling has to be used, i.e.  $SCHEDULER_JOB_NAME, $Scheduler_Job_Name, $SCHEDULER_job_name represent different environment variables, only the first one is valid.

...