To process a script, issue the RUN command. You can run a script that contains substitution variables by specifying them along with the RUN command.
You can preview the command lines of a script without actually executing the commands by using the PREVIEW=YES parameter with the RUN command. If the script contains substitution variables, the command lines are displayed with the substituted variables. This is useful for evaluating a script before you run it.
run qaixc
To
process the following script that contains substitution variables: /*----------------------------------------------*/
/* Sample continuation and substitution example */
/* ---------------------------------------------*/
SELECT-
$1 FROM-
NODES WHERE-
PLATFORM='$2'
run qaixc node_name aix
Where
$1 is node_name and $2 is aix.