Top
Systemwalker Operation Manager  Reference Guide
FUJITSU Software

7.20.1 Environment Variable Configuration File for the Job Execution Control

File name

Any

Description

This is called by the -env environment variable configuration file name option of the qsub command and specifies environment variables to be given to a job.

File Location

Any

File Format

Multiple patterns of environment variables can be defined within each environment variable configuration file.

Delimit the patterns by putting [JOBn] starting at the first character of the first line. n is a number between 1 and 255.

It is recommended to start from [JOB1] and add in ascending order to reduce the chance of mistakes and to make maintenance easier.

Environment variable definitions are made up of a line with the environment variable name and a line with the environment variable value.

An example is shown below:

[JOB1]
ENVNAME1=DATA1                     -+                          -+
ENVVALUE1=/export/200401/data001-+2 lines make the set    |
ENVNAME2=DATA2                                                     |Pattern 1
ENVVALUE2=/export/200401/data002                              -+
[JOB2]
ENVNAME1=DATA1
ENVVALUE1=/export/200402/data001
ENVNAME2=DATA2
ENVVALUE2=/export/200402/data002

Parameters

[JOBn]

Must be included at the beginning of each pattern.

ENVNAMEm= environmental variable name

Specify the name for the environment variable.

ENVVALUEm= environment variable value

Specify the environment variable values set in the environment variables specified with ENVNAMEm.

Example

To set the environment variable value /export/200401/data001 in the environment variable DATA1, write as follows:

ENVNAME1=DATA1
ENVVALUE1=/export/200401/data001