From c62a4ca2600db9e1ad687f388f49deadebf7033c Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 23 Apr 2020 22:37:01 -0400 Subject: fix password selection for entries with no user --- bin/hush/p | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/hush/p b/bin/hush/p index 1b281ec..34849c2 100755 --- a/bin/hush/p +++ b/bin/hush/p @@ -2,4 +2,4 @@ set -eu set -o pipefail -rbw ls --fields name,user | perl -pale'$_ .= "\t$F[0]/$F[1]"' | fzf --with-nth=3 | perl -pale's/\t[^\t]*$//' | xargs rbw get +rbw ls --fields name,user | perl -pale'$_ = "$F[0]/$F[1]\t$_"' | fzf --with-nth=1 | perl -pale's/^[^\t]*\t//' | xargs rbw get -- cgit v1.2.3-54-g00ecf