chiark / gitweb /
bash-completion: rework startable/restartable units once more
[elogind.git] / shell-completion / bash / systemd-cgls
1 # systemd-cgls(1) completion                  -*- shell-script -*-
2 #
3 # This file is part of systemd.
4 #
5 # Copyright 2014 Thomas H.P. Andersen
6 #
7 # systemd is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU Lesser General Public License as published by
9 # the Free Software Foundation; either version 2.1 of the License, or
10 # (at your option) any later version.
11 #
12 # systemd is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public License
18 # along with systemd; If not, see <http://www.gnu.org/licenses/>.
19
20 __contains_word() {
21         local w word=$1; shift
22         for w in "$@"; do
23                 [[ $w = "$word" ]] && return
24         done
25 }
26
27 __get_machines() {
28         local a b
29         machinectl list --no-legend --no-pager | { while read a b; do echo " $a"; done; };
30 }
31
32 _systemd_cgls() {
33         local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
34         local i verb comps
35
36         local -A OPTS=(
37                [STANDALONE]='-h --help --version --all -l --full -k --no-pager'
38                       [ARG]='-M --machine'
39         )
40
41         _init_completion || return
42
43         if __contains_word "$prev" ${OPTS[ARG]}; then
44                 case $prev in
45                         --machine|-M)
46                                 comps=$( __get_machines )
47                         ;;
48                 esac
49                 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
50                 return 0
51         fi
52
53         COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
54 }
55
56 complete -F _systemd_cgls systemd-cgls