NET/MASTER Management Services (MS) Command Reference Manual
EXEC
NonStop NET/MASTER MS Commands
2–94 115412 Tandem Computers Incorporated
Upon execution, the system variable &SYS.PARMCNT holds the number of
parameters created, and the system variable &SYS.ALLPARMS holds the
parameters in a single string. The system variable &SYS.NCLID holds the NCL
process identifier of the NCL process.
For related information, see the FLUSH, GO, SHOW NCL, and START commands.
Examples
1. The following example invokes three NCL procedures: PROC1, PROC2, and
PROC3. PROC2 begins execution when PROC1 finishes execution, and PROC3
begins execution when PROC2 finishes execution:
EXEC PROC1
EXEC PROC2
EXEC PROC3
2. The following example passes the parameters MON, TUE, WED, THU, FRI, SAT,
and SUN to PROC4:
EXEC PROC4 MON TUE WED THU FRI SAT SUN
Upon execution, NCL assigns these parameters to &1 through &7, respectively.
The value of &SYS.PARMCNT is 7, and the value of &SYS.ALLPARMS is the
following:
MON TUE WED THU FRI SAT SUN