[pass] Idiomatic way to generate a listing of all passwords ?

Jean-Baptiste Denis jbd at jbdenis.net
Tue Jun 16 15:16:10 CEST 2015


Hello,

I've got one more of my "idiomatic" kind style of question again =)

I'd like to print a listing of all my secrets from password store to put inside
a physical safe.

I found a way, which is quite dirty and fragile :

$ find $HOME/.password-store -type f -name "*gpg" -print0 -exec gpg -d --batch
-q {} \; | tr '\0' ' '

Do you have a clever way to achieve this ?

Jean-Baptiste


More information about the Password-Store mailing list