Your IP : 18.119.133.172


Current Path : /proc/9788/cwd/proc/9790/root/proc/9790/cwd/sbin/
Upload File :
Current File : //proc/9788/cwd/proc/9790/root/proc/9790/cwd/sbin/cracklib-format

#!/bin/sh
#
# This preprocesses a set of word lists into a suitable form for input
# into cracklib-packer
#
LC_ALL=C
export LC_ALL
gzip -cdf "$@" |
    grep -v '^\(#\|$\)' |
    tr '[:upper:]' '[:lower:]' |
    tr -cd '\n[:graph:]' |
    sort -u