home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
oct93
/
comm
/
4d-bbsdemo.lha
/
4D-BBSDemo
/
ARexx
/
4dchatreq.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-09-02
|
552b
|
24 lines
/* ChatReq.Rexx Copyright 1993 © CornerStone Software
* Written By Dale E. Reed Jr.
* All Rights Reserved
*
* This program will log the date/time and reason why someone requested
* chat into a logfile called "Text:Logs/ChatReq.Log"
*
*/
options results
logfile='Text:Logs/ChatReq.Log'
ARG port username chatreason
if open(log, logfile, 'Append') = 1 then
do
bigline=date() || ' ' || username || chatreason
writeln(log, bigline)
close(log)
end