home *** CD-ROM | disk | FTP | other *** search
/ Windows NT Super Tune-Up Kit / PIE-WindowsNTSuperTuneUpKit-1997.iso / BNCHMARK / SVRBENCH / UW21 / UW21S.TAR / svr_cln < prev    next >
Text File  |  1996-03-15  |  355b  |  18 lines

  1. echo    "executing svr_cln"    # first char not #, so use Bourne shell
  2.  
  3. #  svr_cln - execute cleanup files after abnormal termination of master
  4.  
  5. if test -x svr_ipc
  6. then            # remove any shared memory or semaphores left over
  7.     cat svr_ipc
  8.     ./svr_ipc
  9.     rm svr_ipc
  10. fi
  11.  
  12. if test -x svr_pth
  13. then            # remove any data files left over
  14.     cat svr_pth
  15.     ./svr_pth
  16.     rm svr_pth
  17. fi
  18.