In parameter mode, specify the input to DUMPALL at the same time that the program is executed. You can enter several commands separated by semicolons (;) in the same statement.
To run DUMPALL in parameter mode, use the following syntax:
── RUN ─┬─────┬─ SYSTEM/DUMPALL ── ( ── " ──<command list>── " ── ) ───┤ └─ $ ─┘
Explanation
$
Must be used when running DUMPALL through Command and Edit (CANDE).
<command list>
Lists the commands DUMPALL is to use. The list of commands must appear within double quotation marks ("). The command list consists of one or more DUMPALL commands separated by semicolons (;). Work Flow Language (WFL) permits a maximum of 256 characters to be entered in the command list. Refer to the descriptions in “Standard Commands” earlier in this section.
Example 1
Example 1 produces a listing of the file TESTFILE.
RUN $SYSTEM/DUMPALL("LIST TESTFILE");
Example 2
Example 2 produces a listing of the files TESTFILE and NEWFILE.
RUN $SYSTEM/DUMPALL("LIST TESTFILE; LIST NEWFILE");