Guest User

Untitled

a guest
Nov 21st, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. # use fzf to find pass .gpg
  4.  
  5. find ~/.password-store/* -type f | \
  6. grep -E '\.gpg$' | \
  7. sed -e "s/.*password-store\///" | \
  8. sed -e "s/\.gpg$//" | \
  9. fzf
Add Comment
Please, Sign In to add comment