From: Arthur Zamarin Date: Fri, 26 Apr 2024 09:10:26 +0000 (+0300) Subject: shell completion: fix machinectl import-{tar,raw} X-Git-Tag: v256-rc2~195^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F32494%2Fhead;p=thirdparty%2Fsystemd.git shell completion: fix machinectl import-{tar,raw} Signed-off-by: Arthur Zamarin --- diff --git a/shell-completion/bash/machinectl b/shell-completion/bash/machinectl index f4d46c95112..b3c2e501641 100644 --- a/shell-completion/bash/machinectl +++ b/shell-completion/bash/machinectl @@ -107,8 +107,12 @@ _machinectl() { comps=$( __get_machines ) elif __contains_word "$verb" ${VERBS[FILE]}; then - comps=$(compgen -f -- "cur") - compopt -o filenames + if (( COMP_CWORD == i + 1 )); then # first argument after verb + comps=$(compgen -f -- "$cur") + compopt -o filenames + else + comps='' + fi fi COMPREPLY=( $(compgen -W '$comps' -- "$cur") )