Home > Pass: The Standard Unix Password Manager

Pass: The Standard Unix Password Manager

I’d like to move from Keepass to Pass. But first, need to actually learn and use it.

Migrating

pass init

Script to convert Firefox passwords into the pass multiline format that passff expects:

cat passwords.csv | cut -d\" -f6,4,2 --output-delimiter=" " | awk '{ print $3"\nlogin: " $2 "\nurl: " $1"\n"}'

Then did

pass insert -m google.com

and copied into the output from the Awk script above.