From fd6090664ff8873dd37dffab0585bf2243aec368 Mon Sep 17 00:00:00 2001 From: Marcel Robitaille Date: Mon, 10 Oct 2022 11:44:05 -0300 Subject: [PATCH] [bin] Wip: Script to find password with FZF --- bin/fzf-pass | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 bin/fzf-pass diff --git a/bin/fzf-pass b/bin/fzf-pass new file mode 100755 index 0000000..0c478d6 --- /dev/null +++ b/bin/fzf-pass @@ -0,0 +1,6 @@ +#!/bin/bash + +cd ~/.password-store + +password=$(find . -type f | sed -e 's/\.\///' -e 's/\.gpg$//' | fzf) +pass "$password"