From 73b73b762c801f04e291c551dd6eb47e146dca88 Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Mon, 21 Sep 2015 16:54:58 +0000 Subject: shell-completion: update systemd-cgtop bash completion: --recursive --- shell-completion/bash/systemd-cgtop | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shell-completion/bash/systemd-cgtop b/shell-completion/bash/systemd-cgtop index eefb8fc5c4..beee627dbe 100644 --- a/shell-completion/bash/systemd-cgtop +++ b/shell-completion/bash/systemd-cgtop @@ -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 -- cgit v1.2.3-54-g00ecf