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 >
Text File  |  2010-05-05  |  647b  |  20 lines

  1. #!/bin/sh
  2. if [ -z $1 ]; then
  3.     echo "Usage:"
  4.     echo "  create-cracklib-dict wordlist ..."
  5.     echo
  6.     echo "This script takes one or more word list files as arguments"
  7.     echo "and converts them into cracklib dictionaries for use"
  8.     echo "by password checking programs. The results are placed in"
  9.     echo "the default compiled-in dictionary location."
  10.     echo 
  11.     echo "If you wish to store the dictionary in a different location,"
  12.     echo "use the cracklib-format and cracklib-packer commands directly."
  13.     echo
  14.     echo "Example:"
  15.     echo "create-cracklib-dict /usr/share/words"
  16. else
  17.     cracklib-format "$@" | cracklib-packer
  18. fi
  19.  
  20.