home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri Kaikille K-CD 2002 #1 / K-CD_2002-01.iso / DALiworld / data1.cab / Miscellaneous / reset_world < prev    next >
Text File  |  2001-08-06  |  426b  |  22 lines

  1. #!/bin/sh
  2. #
  3. # Reset World Script - this script will remove any generated and saved
  4. # Aquariums. It can be used if you are not happy with the current world, or
  5. # if you are getting errors from an existing one.
  6. #
  7. # Author: Todd Papaioannou
  8. # Date  : Jan 2001
  9. #
  10.  
  11. # Is there a saved Aquarium?
  12. if [ -f World.aq ]
  13. then
  14.     rm -f World.aq 
  15. fi
  16.  
  17. # Is there a saved World?
  18. if [ -f World.dat ]
  19. then
  20.     rm -f World.dat
  21. fi
  22.