home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d7xx
/
d770
/
uedit.lha
/
Uedit
/
e.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1992-11-22
|
452b
|
18 lines
/* load a list of files into a UE buffer */
/* Ben Eng was here but flew away on a Jet Penguin */
parse arg x
CR = '0a'x
if x = "" then call warn
cdir = pragma('d')
if cdir = '' | right(cdir,1) = '/' | right(cdir,1) = ':' then
rootdir = cdir
else rootdir = cdir || '/'
do i=1 to words(x)
fnam = rootdir || word(x, i)
address 'URexx' 'f:' || fnam /* load file */
end
exit
warn:
say " Need one arguments." CR ||" USAGE: [rx] e <file>"
exit