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

  1. /* ROSE.CMD */
  2. /* This script is for LOCAL alias scripting.                   */
  3. /* It takes the input of /rose nickname                        */
  4. /* and converts it to /me gives nickname a @}------%---------  */
  5. parse arg window nick trash
  6.  
  7. if nick='*'
  8.    then
  9.      nick=window
  10.    else
  11.      nop
  12.  
  13.         str = '/me gives '||nick||' a @}------%---------.  '||trash
  14.  
  15. say str
  16. return str
  17.  
  18.