home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
tusportal.tus.k12.pa.us
/
tusportal.tus.k12.pa.us.tar
/
tusportal.tus.k12.pa.us
/
Wyse
/
latest-image.raw
/
0.img
/
usr
/
sbin
/
create-cracklib-dict
< prev
next >
Wrap
Text File
|
2010-05-05
|
647b
|
20 lines
#!/bin/sh
if [ -z $1 ]; then
echo "Usage:"
echo " create-cracklib-dict wordlist ..."
echo
echo "This script takes one or more word list files as arguments"
echo "and converts them into cracklib dictionaries for use"
echo "by password checking programs. The results are placed in"
echo "the default compiled-in dictionary location."
echo
echo "If you wish to store the dictionary in a different location,"
echo "use the cracklib-format and cracklib-packer commands directly."
echo
echo "Example:"
echo "create-cracklib-dict /usr/share/words"
else
cracklib-format "$@" | cracklib-packer
fi