home *** CD-ROM | disk | FTP | other *** search
- /* PAR PUT SCRIPT */
-
- ADDRESS DDR
- OPTIONS RESULTS
-
- PARSE ARG inname ',' outname
-
- 'MODE ANIM'
- 'EMULATE ON'
- 'APPEND OFF'
-
- 'FILE' outname
- if result ~= '' then 'APPEND ON'
-
- ADDRESS COMMAND
- 'copy ' ""inname"" ""outname""
-
- ADDRESS DDR
- filename = GetFileName(outname)
- 'DONE' ""filename""
- EXIT
-
- GetFileName: procedure
- ARG fullfile
- c = lastpos("/", fullfile)
- if c = 0 then c = lastpos(":", fullfile)
- return substr(fullfile, c + 1)
-