DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦97591a9d3⟧ TextFile

    Length: 265 (0x109)
    Types: TextFile
    Names: »dictprep.sh«

Derivation

└─⟦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« 

TextFile

#!/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'