home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 9
/
FreshFishVol9-CD2.bin
/
bbs
/
util
/
irmaster-3.11.lha
/
IRMaster
/
ARexx
/
Send_at.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-09-15
|
2KB
|
58 lines
/***********************
Send_At.rexx
$VER: 1.0 by Michael Watzl
ENGLISH:
--------
Send_at.rexx <time> <commandstring>
This script waits untill <time> and IR_SENDs commandstring to
protname (which can be edited some lines down).
Example: Switch off tv set at 3:00
1> rx send_at "3:00" "IR_SEND '$POWER'"
Assuming that the tvset.irm is running and the gadget 'POWER'
exists and is learned
DEUTSCH:
--------
Send_at.rexx <zeit> <kommando>
Dieses Script wartet bis um <zeit> Uhr und IR_SENDet dann
<kommando> zu dem ARexxport, der am anfang des Scripts steht
und dort entsprechend geändert werden muß.
Beispiel: Der Fernseher soll um 3:00 abgeschalten werden.
1> rx send_at "3:00" "IR_SEND '$POWER'"
Wenn tvset.irm läuft und das Gadget "POWER" existiert und
eingelernt ist...
**************************/
address "tvset_rexx" /* Hier muß der korrekte Namen des Projektes
angegeben werden, Groß- und Kleinschreibung!*/
/* Here you must edit the address: Type the
correct (case sensitive) port name */
arg time commandstring
/* führende Leerzeichen entfernen */
commandstring = strip( commandstring , "L" )
/* mit dem Shellkommando Wait wird bis zur entsprechenden Uhrzeit gewartet */
say "Warte bis um "time " Uhr"
address command "wait until "time
/* Bei Leerzeichen im Commandostring werden zusätzliche Anführungszeichen
benötigt! */
"IR_SEND $"commandstring
exit