Skip to content

Instantly share code, notes, and snippets.

@ShaneQful
Created May 2, 2016 18:51
How to move from Last Pass to GPG
# Export your Last Pass to a CSV file, encrypt it, shred it and delete it
gpg -c LastPass.csv
# Remember your password
shred LastPass.csv
rm LastPass.csv
# Then when you want access a site, you can use the following command (change googgle to the site your looking for)
gpg -d LastPass.csv.gpg | awk '/username,password/ || /google/ { print $1 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment