Hitachi

Job Management Partner 1 Version 10 Job Management Partner 1/Advanced Shell Description, User's Guide, Reference, and Operator's Guide


VAR_ENV_NAME_LOWERCASE parameter (specifies whether environment variable names in lowercase letters are supported) (Windows only)

Organization of this page

Format

VAR_ENV_NAME_LOWERCASE {ENABLE|DISABLE}

Description

This parameter specifies whether environment variable names in lowercase letters are supported.

Operands

ENABLE

Specifies that environment variable names in lowercase letters are supported.

Environment variable names with the same spelling but different capitalization are not identified as different environment variables in Windows, but they are recognized as separate shell variables. To avoid confusion, we recommend that you use the same capitalization for shell variables that have the same spelling.

DISABLE

Specifies that environment variable names in lowercase letters are not supported.

Notes

Examples

This example defines shell variable names SAMPLE01 and sample01 in the job definition script and a batch file, as shown in the following.

Contents of job definition script envsample.ash
export SAMPLE01=large
export sample01=small
.\\envsample.bat | "${ADSH_DIR_CMD}grep" -i "SAMPLE01" 1>&2
echo "*** Shell variables ***" >&2
echo "SAMPLE01=$SAMPLE01" >&2
echo "sample01=$sample01" >&2
Contents of batch file envsample.bat
set