home *** CD-ROM | disk | FTP | other *** search
- /* Append a buffer to a file. Note! This only works with WShell. */
- options results
-
- 'rexx-request "Append to file: "'
- if rc~=0 then exit
- filename=result
-
- tmpname='T:'||time(s)||pragma(id)
- 'write-file "'||tmpname||'"'
- address command 'type >>'||filename tmpname
- address command 'delete' tmpname
-