Quick script to convert dict for passpal
#1
Seems to work so far (thanks to bmenrigh & inv):

Code:
#!/bin/bash

if [ -z "$2" ]
then
        echo "Usage: $0 <infile> <outfile>"
        exit
fi

INFILE=$1
OUTFILE=$2

if [ -f "$INFILE" ] && `touch $OUTFILE`
then
        iconv -f latin1 -t utf8 $INFILE > $OUTFILE
fi
Reply
#2
Cool. Let me just suggest this tool, for those of you who are not allergic to PHP: http://thepasswordproject.com/dictclean

And if anyone would like to port it to Ruby, I'd be grateful Wink
Reply