]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
shell-completion: update systemd-cgtop bash completion: --recursive 1321/head
authorEvgeny Vereshchagin <evvers@ya.ru>
Mon, 21 Sep 2015 16:54:58 +0000 (16:54 +0000)
committerEvgeny Vereshchagin <evvers@ya.ru>
Mon, 21 Sep 2015 16:54:58 +0000 (16:54 +0000)
shell-completion/bash/systemd-cgtop

index eefb8fc5c456ee7a6b32c913cc4bb9a80fc29064..beee627dbe428407da20b48e6634a133e7c04a68 100644 (file)
@@ -35,7 +35,7 @@ _systemd_cgtop() {
 
         local -A OPTS=(
                [STANDALONE]='-h --help --version -p -t -c -m -i -b --batch -n --iterations -d --delay'
-               [ARG]='--cpu --depth -M --machine'
+               [ARG]='--cpu --depth -M --machine --recursive'
                )
 
         _init_completion || return
@@ -45,6 +45,8 @@ _systemd_cgtop() {
                         --machine|-M)
                                 comps=$( __get_machines )
                         ;;
+                        --recursive)
+                                comps='yes no'
                 esac
                 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
                 return 0