]> git.ipfire.org Git - thirdparty/systemd.git/blame - shell-completion/bash/networkctl
license: LGPL-2.1+ -> LGPL-2.1-or-later
[thirdparty/systemd.git] / shell-completion / bash / networkctl
CommitLineData
e4f246b1 1# networkctl(1) completion -*- shell-script -*-
db9ecf05 2# SPDX-License-Identifier: LGPL-2.1-or-later
e4f246b1
EV
3#
4# This file is part of systemd.
5#
6# systemd is free software; you can redistribute it and/or modify it
7# under the terms of the GNU Lesser General Public License as published by
8# the Free Software Foundation; either version 2.1 of the License, or
9# (at your option) any later version.
10#
11# systemd is distributed in the hope that it will be useful, but
12# WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14# General Public License for more details.
15#
16# You should have received a copy of the GNU Lesser General Public License
17# along with systemd; If not, see <http://www.gnu.org/licenses/>.
18
19__contains_word () {
843cfcb1
ZJS
20 local w word=$1; shift
21 for w in "$@"; do
22 [[ $w = "$word" ]] && return
23 done
24 return 1
e4f246b1
EV
25}
26
27__get_links() {
6c64cf88 28 networkctl list --no-legend --no-pager --all --full | { while read -r a b c; do echo " $b"; done; };
e4f246b1
EV
29}
30
31_networkctl() {
843cfcb1
ZJS
32 local i verb comps
33 local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
34 local -A OPTS=(
0ca1926e
YW
35 [STANDALONE]='-a --all -h --help --version --no-pager --no-legend -s --stats -l --full'
36 [ARG]='-n --lines'
843cfcb1 37 )
e4f246b1 38
843cfcb1 39 local -A VERBS=(
e4f8d5e0
YW
40 [STANDALONE]='label reload'
41 [LINKS]='status list lldp delete renew up down forcerenew reconfigure'
843cfcb1 42 )
e4f246b1 43
843cfcb1 44 _init_completion || return
e4f246b1 45
843cfcb1
ZJS
46 for ((i=0; i < COMP_CWORD; i++)); do
47 if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]} &&
48 ! __contains_word "${COMP_WORDS[i-1]}" ${OPTS[ARG]}; then
49 verb=${COMP_WORDS[i]}
50 break
e4f246b1 51 fi
843cfcb1 52 done
e4f246b1 53
843cfcb1
ZJS
54 if [[ "$cur" = -* ]]; then
55 COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
e4f246b1 56 return 0
843cfcb1
ZJS
57 fi
58
59 if [[ -z $verb ]]; then
60 comps=${VERBS[*]}
61 elif __contains_word "$verb" ${VERBS[STANDALONE]}; then
62 comps=''
63 elif __contains_word "$verb" ${VERBS[LINKS]}; then
64 comps=$( __get_links )
65 fi
66
67 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
68 return 0
e4f246b1
EV
69}
70
71complete -F _networkctl networkctl