home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d6xx
/
d652
/
burf.lha
/
Burf
/
Install_Burf
< prev
next >
Wrap
Text File
|
1992-05-14
|
550b
|
25 lines
/* Install_Burf */
/* Copyright © Michael Tanzer, 1991, 1992 */
/* See additional notices in accompanying documentation */
say 'Copying the following file to your rexx: directory...'
say ' '
say ' Burf'
say ' '
say 'Enter ''go'' to continue:'
pull response
if response~='GO' then do
say 'Installation aborted.'
exit
end
signal on error
cmdstring = 'COPY "'pragma('D')'/'Burf'" rexx:'
address command cmdstring
say 'Installation complete.'
exit
error:
say 'An error has occurred while copying Burf.'
say 'Installation terminated.'
exit