diff options
Diffstat (limited to 'pt')
-rwxr-xr-x | pt | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -100,7 +100,7 @@ function main { [[ $? -gt 0 ]] && log "Error: '${@}' is not in the password store" && exit 1 # Parse pass output into appropriate variables - _passpassword=$(printf -- "%s" "${_passentry}" | head -n1) + _passpassword=$(printf -- "%s" "${_passentry}" | head -n1 | sed 's/`/\`/g') _passusername=$(getfield "${_passentry}" ':' username) _passdelim=$(getfield "${_passentry}" ':' delim) _passsubmit=$(getfield "${_passentry}" ':' submit) |