home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
misc
/
volume23
/
crack
/
part01
/
Scripts
/
spotless
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1991-09-22
|
287 b
|
20 lines
#!/bin/sh
###
# This program written by ADE Muffett (aem@aber.ac.uk), August 1991,
# as part of the 'Crack' password cracking package.
###
echo "Are you sure that you want to do this ? (no)"
read ans
case $ans in
[Yy]*)
make -f Scripts/crack.mf spotless
;;
*)
;;
esac
exit 0