home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / pmirc12.zip / JOINCH.CMD next >
OS/2 REXX Batch file  |  1996-10-20  |  306b  |  12 lines

  1. /* This script issues a /whois on people who join a channel*/
  2. parse arg channel garbage nick text
  3. /* #os/2 has so many folks who join/leave, i don't want to do the*/
  4. /* /whois if someone joins that channel */
  5. If channel = '#os/2'
  6.   Then
  7.    return
  8.   Else
  9. str = '/whois '||nick
  10. say str
  11. return str
  12.