|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 265 (0x109) Types: TextFile Names: »dictprep.sh«
└─⟦4f9d7c866⟧ Bits:30007245 EUUGD6: Sikkerheds distributionen └─⟦123909933⟧ »./npasswd/npasswd.tar.Z« └─⟦22a202e7d⟧ └─⟦this⟧ »npass-new/cracklib/dictprep.sh« └─⟦this⟧ »npass-new/npasswd_jpl/cracklib/dictprep.sh« └─⟦this⟧ »npass-new/tool/dictprep.sh«
#!/bin/sh # This script prepares a wordlist for use with goodpass(). # It converts everything to lowercase, truncates to 8 chars, # deletes words shorter than 5 chars, sorts, and deletes duplicates. cat $* | cut -c1-8 | tr A-Z a-z | uniq | sort -u | awk 'length>5'