From c1b3ff04425844ed88fac2a634232bdb8e2662bc Mon Sep 17 00:00:00 2001 From: Daniel Lublin Date: Fri, 15 Sep 2017 10:06:46 +0200 Subject: passmenu: Don't eat whitespace at beginning/end of password If IFS (Input Field Separator) is not emptied, read will actually strip spaces and tabs at the beginning/end end of the "line". --- contrib/dmenu/passmenu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib/dmenu') diff --git a/contrib/dmenu/passmenu b/contrib/dmenu/passmenu index 7a9c517..83268bc 100755 --- a/contrib/dmenu/passmenu +++ b/contrib/dmenu/passmenu @@ -20,6 +20,6 @@ password=$(printf '%s\n' "${password_files[@]}" | dmenu "$@") if [[ $typeit -eq 0 ]]; then pass show -c "$password" 2>/dev/null else - pass show "$password" | { read -r pass; printf %s "$pass"; } | + pass show "$password" | { IFS= read -r pass; printf %s "$pass"; } | xdotool type --clearmodifiers --file - fi -- cgit v1.2.3