home *** CD-ROM | disk | FTP | other *** search
- /*
- $VER: DOS-DOpus.dopus5 1.0 (28.7.98)
- Loads current shell directory into a new DOpus5 lister.
- */
- options results /* Enable results */
- if ~show('P','DOPUS.1') then do /* Check for DOPUS.1 ARexx port */
- Say "DirectoryOpus is not running." /* Warn user if DOpus not running */
- Exit (5) /* Exit with result code = 5 (Warn) */
- end /* End this loop */
- Address 'DOPUS.1' /* Address DOpus */
- dopus front /* Bring DOpus to the front */
- dir = pragma('d') /* Returns current shell in 'dir' */
- lister new dir /* Open a new lister, path 'dir' */
- exit /* Exit */
-