Define Variable Value |
A variable is defined and assigned a value in one combined statement using the syntax:
local define NAME "VALUE"
The value may refer to other variables using the ${NAME} notation, such as:
local define OUT_PATH "c:\temp"
local define OUT_FILE_NAME_PATH "${OUT_PATH}\my-file.txt"
Encrypted values can also be used as source for a variable using the syntax:
local define encrypted NAME "ENCRYPTED VALUE"