/* ARexx script to finger someone */ /* For use with AmiComSys 1.12+ */ /* Finger must be in the AMITCP:bin directory */ ADDRESS AMICOMSYS; OPTIONS RESULTS; GET stem info. CLIENTLIST; /* "stem info." inserts the results to the structure 'info.'. */ /* "var s" would have inserted all the results to one string in s. */ /* "CLIENTLIST": We want to read the client list information. */ s=info.selected; ADDRESS COMMAND "AmiTCP:bin/Finger @"info.hostnames.s; /* To start another application just change Finger to any other program name */ EXIT;