- #!/bin/sh
- (
- cd ~/.password-store || exit
- for password in $(find . -not -path './.gitmodules' -not -path './.gpg-id' -not -path './.gitattributes' -not -path './.git/*' -type f | sed 's@\./@@' | sed 's@\.gpg@@'); do
- pass show "$password" | head -n1 | tr -d '\n'
- echo
- done
- )
|