home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / extras / ttx / rexx / KillMM.rexx next >
Encoding:
OS/2 REXX Batch file  |  1996-12-24  |  322 b   |  13 lines

  1. /*
  2.  *   $VER: KillMM.rexx 1.0 (22.7.93)
  3.  *      By Kenneth Yarnall.  This code may be freely distributed.
  4.  *
  5.  *   KillMM.rexx simply removes Middleman from your system.  It does this by
  6.  * sending the 'Quit' command to the Middleman ARexx port, TTX_SASC.
  7.  */
  8.  
  9. if Show('P','TTX_SASC') then
  10.     Address TTX_SASC 'Quit'
  11.  
  12. exit 0
  13.