From 29cc97ad7b4d63233324e31b8a6e16df0b2a39f8 Mon Sep 17 00:00:00 2001 From: "Manuel Amador (Rudd-O)" Date: Sun, 7 May 2017 15:24:16 +0000 Subject: [PATCH] Fix UX to show key. --- bin/qvm-pass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/qvm-pass b/bin/qvm-pass index b7a86cb..a25e84f 100755 --- a/bin/qvm-pass +++ b/bin/qvm-pass @@ -95,11 +95,11 @@ case "$1" in echo "" contents=$(cat) elif [ "$echo" == "1" ] ; then - read -p "Enter password for b: " contents >&2 + read -p "Enter password for $1: " contents >&2 else - read -s -p "Enter password for b: " contents >&2 + read -s -p "Enter password for $1: " contents >&2 echo - read -s -p "Retype password for b: " retypedcontents >&2 + read -s -p "Retype password for $1: " retypedcontents >&2 echo if [ "$retypedcontents" != "$contents" ] ; then echo "Error: the entered passwords do not match."