diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2015-09-21 19:33:00 +0200 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2015-09-21 19:33:00 +0200 |
commit | a2accacb984b784c9a5215ece6c0bf42f096e229 (patch) | |
tree | bfc27b4038e805ab32ef7ec5fd1f2ec4ede5729a /shell-completion | |
parent | shell-completion: cgtop bash completion: -n,--iterations,-d,--delay require arg (diff) | |
download | systemd-a2accacb984b784c9a5215ece6c0bf42f096e229.tar.xz systemd-a2accacb984b784c9a5215ece6c0bf42f096e229.zip |
shell-completion: cgtop bash completion: add -r,--raw,-k,-P,--order
Diffstat (limited to 'shell-completion')
-rw-r--r-- | shell-completion/bash/systemd-cgtop | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/shell-completion/bash/systemd-cgtop b/shell-completion/bash/systemd-cgtop index e6bb0e903b..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' - [ARG]='--cpu --depth -M --machine --recursive -n --iterations -d --delay' + [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 @@ -47,6 +47,10 @@ _systemd_cgtop() { ;; --recursive) comps='yes no' + ;; + --order) + comps='path tasks cpu memory io' + ;; esac COMPREPLY=( $(compgen -W '$comps' -- "$cur") ) return 0 |