summaryrefslogtreecommitdiff
path: root/shell-completion
diff options
context:
space:
mode:
authorEvgeny Vereshchagin <evvers@ya.ru>2015-09-21 17:33:00 +0000
committerEvgeny Vereshchagin <evvers@ya.ru>2015-09-21 17:33:00 +0000
commita2accacb984b784c9a5215ece6c0bf42f096e229 (patch)
treebfc27b4038e805ab32ef7ec5fd1f2ec4ede5729a /shell-completion
parent79af4b6c1c5305f0e80641c232a7417aa4de8740 (diff)
shell-completion: cgtop bash completion: add -r,--raw,-k,-P,--order
Diffstat (limited to 'shell-completion')
-rw-r--r--shell-completion/bash/systemd-cgtop8
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