7 lines
142 B
Bash
Executable File
7 lines
142 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PPWD=$(pwd)
|
|
trap "cd '$PPWD'" EXIT
|
|
cd ~/.password-store
|
|
find . -iname '*.gpg' | cut -c3- | sed 's/\.gpg$//g' | fzf | xargs pass -c
|