home *** CD-ROM | disk | FTP | other *** search
- /* append a new disc, edit catalog, open catalog */
- /* (c) copyright 1992,93 by F.J. Reichert */
-
- edit='sc:c/se' /* insert your favourite editor here */
-
- options results;
- catalog append;
- if rc = 0 then do
- save;
- getattr project;
- cat = result;
- address command;
- edit cat;
- address;
- open cat;
- exit(0);
- end
- say 'error appending new disc';
- exit(10);
-
-