X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=shell-completion%2Fbash%2Floginctl;fp=shell-completion%2Fbash%2Floginctl;h=3104b305fa49b55c5e344b67272730ed4c96e4b1;hb=a72d698d0d9ff9c158155b44cdc77376df31a317;hp=1844085d49ee76a49a1e28570a2e424040f349e7;hpb=751e75769a0a8a255e1a47656f639768879e9518;p=elogind.git diff --git a/shell-completion/bash/loginctl b/shell-completion/bash/loginctl index 1844085d4..3104b305f 100644 --- a/shell-completion/bash/loginctl +++ b/shell-completion/bash/loginctl @@ -18,9 +18,10 @@ # along with systemd; If not, see . __contains_word () { - local word=$1; shift - for w in $*; do [[ $w = $word ]] && return 0; done - return 1 + local w word=$1; shift + for w in "$@"; do + [[ $w = "$word" ]] && return + done } __get_all_sessions () { loginctl list-sessions | { while read -r a b; do printf "%s\n" "$a"; done; } ; }