home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 10
/
Fresh_Fish_10_2352.bin
/
useful
/
util
/
edit
/
mg
/
rexx
/
append.mg
next >
Wrap
Text File
|
1990-06-02
|
296b
|
12 lines
/* 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