diff --git a/README.md b/README.md index 1c0fa89..fccd34a 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,13 @@ Copy the script to any directory included in your $PATH. ``` $ bwc github [sudo] password for $USER: -Using the existing session key from "/home/$USER/.bitwarden_session". +Using the existing session key from '/home/$USER/.bitwarden_session'. Searching for 'github'... abcdefgh-ijkl-mnop-qrst-uvwxyz123456 github.com -Username "Username" copied to clipboard. +Username 'Username' copied to clipboard. Press any key to copy the password... Password copied to clipboard. ``` diff --git a/bwc b/bwc index 9da608e..354d3ac 100755 --- a/bwc +++ b/bwc @@ -28,7 +28,7 @@ process_item () { local username="$(jq -r ".login.username" <<< $login)" echo $username | xclip -sel clip - echo "Username \"$username\" copied to clipboard." + echo "Username '$username' copied to clipboard." read -s -k $'?Press any key to copy the password...\n' jq -r ".login.password" <<< $login | xclip -sel clip @@ -61,7 +61,7 @@ main() { sessionkey=$(bw unlock --raw) save_sessionkey $sessionkey else - echo "Using the existing session key from \"$sessionfile\"." + echo "Using the existing session key from '$sessionfile'." fi # Get a list of matching items