diff options
Diffstat (limited to 'shell-completion/bash/systemd-cgtop')
-rw-r--r-- | shell-completion/bash/systemd-cgtop | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/shell-completion/bash/systemd-cgtop b/shell-completion/bash/systemd-cgtop index eefb8fc5c4..f1ed22fd55 100644 --- a/shell-completion/bash/systemd-cgtop +++ b/shell-completion/bash/systemd-cgtop @@ -34,8 +34,8 @@ _systemd_cgtop() { local comps local -A OPTS=( - [STANDALONE]='-h --help --version -p -t -c -m -i -b --batch -n --iterations -d --delay' - [ARG]='--cpu --depth -M --machine' + [STANDALONE]='-h --help --version -p -t -c -m -i -b --batch -r --raw -k -P' + [ARG]='--cpu --depth -M --machine --recursive -n --iterations -d --delay --order' ) _init_completion || return @@ -45,6 +45,12 @@ _systemd_cgtop() { --machine|-M) comps=$( __get_machines ) ;; + --recursive) + comps='yes no' + ;; + --order) + comps='path tasks cpu memory io' + ;; esac COMPREPLY=( $(compgen -W '$comps' -- "$cur") ) return 0 |