/LastPassToGPG.sh Secret
Created
May 2, 2016 18:51
How to move from Last Pass to GPG
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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