home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / ezirc12o.zip / install.zip / alias / j.cmd < prev    next >
OS/2 REXX Batch file  |  1997-12-26  |  305b  |  13 lines

  1. /* ROSE.CMD */
  2. /* This script is for LOCAL alias scripting.                 */
  3. /* It takes the input of /j channel                          */
  4. /* and converts it /join channel                             */
  5.  
  6. parse arg window channel trash
  7.  
  8.         str = '/join '||channel
  9.  
  10. say str
  11. return str
  12.  
  13.