The type/job or more command will type to the screen the command list, initiate list, prerequisite list, or any other list of a job definition. You indicate which list associated with the job definition is to be displayed on the screen by adding a qualifier (/commands, /initiate or /prerequisites). The default qualifier is /commands.
Windows:
For example, to look at the prerequisite list of the job update_ledger1, you enter:
Schedule> type/job update_ledger1 /prerequisites
\SMITH\UPDATE_LEDGER1.prerequisites
DEPRQRY1
DEPRQRY2
DEPRQRY3
DEPRQRY4
DEPRQRY5
What it does: Types out a list of the job update_ledger1's prerequisites
UNIX/Linux:
Schedule> more -commands my_cache_expect
/cache_expect_examples/my_cache_expect.commands
#!/usr/bin/expect
spawn "my_cache.ksh"
expect "Function: "
send "31\n"
expect "Mode:
"send "4\n"
What it does: Types out the job my_cache_expect's commands
See Type a job's data lists (type/job or more) for a detailed description of this command.