home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume23 / crack / part01 / Scripts / spotless < prev    next >
Encoding:
Text File  |  1991-09-22  |  287 b   |  20 lines

  1. #!/bin/sh
  2.  
  3. ###
  4. # This program written by ADE Muffett (aem@aber.ac.uk), August 1991,
  5. # as part of the 'Crack' password cracking package.
  6. ###
  7.  
  8. echo "Are you sure that you want to do this ? (no)"
  9. read ans
  10.  
  11. case $ans in
  12.     [Yy]*)
  13.         make -f Scripts/crack.mf spotless
  14.         ;;
  15.     *)
  16.         ;;
  17. esac
  18.  
  19. exit 0
  20.