home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD1.iso
/
CDRom
/
asimcd30.dms
/
in.adf
/
ARexx_Samples
/
DiscChanger
/
cdda_last_track.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
|
1995-06-17
|
335 b
|
20 lines
/* This example will demonstrate the use of the cdda_last_track command
in DiscChanger.
(C)1995 Asimware Innovations Inc. */
options results
address "DiscChanger_ARexx"
cdda_last_track
if rc ~= 0 then do
say 'Failed with 'rc'.'
exit
end
last = result
say 'Last audio track is 'last'.'
exit