home *** CD-ROM | disk | FTP | other *** search
- /* MCF_Finger.AMIRX
- // $VER: MCF_Finger.AMIRX 4.9 (23.11.96)
- \\ Written by Donald T. Becker (dtbecker@prolog.net) IRC: StarDustr
- // Please mail any bug reports/comments to the above address with a subject
- \\ header of MCF.AMIRX.
- //
- \\ ** What to do with this file?
- // Put this script in Rexx:
- \\ It will be used by MCF.AMIRX.
- */
- ;xsists=showlist('A',AmiTCP)+showlist('V',AmiTCP);if xsists=0 then exit;if ~exists("AmiTCP:bin/Finger") then exit;OPTIONS RESULTS;parse arg MCFenv junk LUser junk;address (MCFenv);open(rslv,'APIPE:AmiTCP:bin/finger ',R);x1=readln(rslv);x2=readln(rslv);close(rslv);x1=strip(x1);x2=strip(x2);"RAW PRIVMSG "LUser" :"x1;"RAW PRIVMSG "LUser" :"x2;exit