Question: is it possible to mass import passes? #339
Comments
At the moment, I don't have the time to give you an exact solution, but QtPass is basically a GUI for Pass, which is an command line Tool. |
This is what I came up with, if it's of use to anyone else: Add passwords into ~/.password-store python firefox_decrypt.py [firefox profile] > passes.txt (Enter master password if there is one.) You will need to check the first line of passes.txt, and if it's bash: for entry in $(seq 0 4 $WC) URL=$(echo -e $ENTRY | grep Website: | awk '{print $2}' US=$(echo -e $ENTRY | grep Username: | awk '{print $2}' PW=$(echo -e $ENTRY | grep Password: | awk '{print $2}' echo "Processing $URL" Ugh github uses hashes for formatting even when using code tags... |
I have a python script an exported all my passwords from firefox. I would like to add them to pass, but doing it one by one and with a password prompt would be messy.
Is there way I can import them automatically? Even if I wrote a shell script to read my password file and add that way it would be acceptable.
What are my options?
The text was updated successfully, but these errors were encountered: