home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / games / tinymud2.zip / RESTART-.NIG < prev    next >
Text File  |  1990-09-02  |  422b  |  16 lines

  1. #!/bin/csh -f
  2. cd /clients/Islandia/lib
  3. mv islandia.db islandia.db.old
  4. if(-r islandia.db.new) then
  5.     mv islandia.db.new islandia.db
  6. else
  7.     cp islandia.db.old islandia.db
  8. endif
  9.  
  10. cp ../bin/netmud.conc netmud.c
  11. cp ../bin/concentrate .
  12. if(-r connect.night) cp connect.night connect.txt
  13. if(-r motd.night) cp motd.night motd.txt
  14. echo RESTARTED AT `date` >> islandia.log
  15. nice netmud.c islandia.db islandia.db.new >>& islandia.log &
  16.