home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 5
/
FreshFish_July-August1994.bin
/
bbs
/
util
/
mg-3b.lha
/
mg-3b
/
REXX
/
buffers.mg
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1990-06-02
|
249 b
|
13 lines
/* Exercise the rexx-buffer-list command */
options failat 2
'rexx-buffer-list' buffers
'rexx-insert "We got' buffers.0 'buffers\n"'
do i = 1 to buffers.0
'rexx-insert "' buffers.i.name 'file:' buffers.i.file buffers.i.status '\n"'
end
exit 0