invert cut selection to properly trim off LHS of key:value pairs

This commit is contained in:
Joel Beckmeyer 2021-01-11 16:54:52 -05:00
parent cfe07838db
commit 8305359a9a
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ _pass_field() {
plaintext="$(pass show $password | tail -n +2)"
for line in $plaintext; do
if [[ $line == $1:* ]]; then
printf "$(_trim "$(printf "$line" | cut -d: -f2 -s)")"
printf "$(_trim "$(printf "$line" | cut -d: -f1 -s --complement)")"
fi
done
unset IFS