home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD1.iso
/
CDRom
/
ASIMCD30.LHA
/
arexx_samples
/
discchanger
/
max_partitions.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
OS/2 REXX Batch file
|
1994-08-01
|
351 b
|
19 lines
/* This example will demonstrate the use of the max_partitions command
in DiscChanger.
(C)1993 Asimware Innovations */
options results
address "DiscChanger_ARexx"
max_partitions
if rc ~= 0 then do
say 'Failed with 'rc'.'
exit
end
say 'There are currently 'result' valid partitions mounted.'
exit