Example

This example shows an invocation of DIRLIST which displays the directory list for /SYSTEM/etc. The list shows columns for Permissions, File Type, and Modified Date. The line command processor LCPROC is invoked for line commands LL, B, and UPD.
Command invocation
dir = '/SYSTEM/etc'
ISPEXEC DIRLIST PATH(dir) COLS(PE,10,TY,4,MO,10) LCMDS(LCPROC,LL,B,UPD)
Call invocation
dir = '/SYSTEM/etc';
CALL ISPLINK('DIRLIST ',
             'DIR     ',' ',' ',' ',
             '(PE,10,TY,4,MO,10)',' ',
             '(LCPROC,LL,B,UPD)');