home *** CD-ROM | disk | FTP | other *** search
- /* REXX */
- /* You need to change "d:" to the disk containing the \ALARMS directory */
- Arg Name Rest
- '@echo off'
- if Name = '' then do
- say 'The name of the audio file is missing. Enter'
- say ' ALARM.CMD name'
- say 'where "name" is the name of the audio file.'
- pause
- signal done
- end
- else do
- 'd:\alarms\alarm.bat' Name
- end
- if Rest \= '' then do
- say 'Extraneous parameters "'Rest'" ignored.'
- pause
- end
- done: exit