2024-02-27 14:54:49 +01:00
|
|
|
# shellcheck shell=bash
|
2015-08-31 19:24:16 +00:00
|
|
|
# systemd-path(1) completion -*- shell-script -*-
|
2020-11-09 13:23:58 +09:00
|
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
2015-08-31 19:24:16 +00:00
|
|
|
#
|
|
|
|
|
# This file is part of systemd.
|
|
|
|
|
#
|
|
|
|
|
# systemd is free software; you can redistribute it and/or modify it
|
|
|
|
|
# under the terms of the GNU Lesser General Public License as published by
|
|
|
|
|
# the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# systemd is distributed in the hope that it will be useful, but
|
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
# General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
2022-06-28 16:07:35 +02:00
|
|
|
# along with systemd; If not, see <https://www.gnu.org/licenses/>.
|
2015-08-31 19:24:16 +00:00
|
|
|
|
|
|
|
|
__contains_word () {
|
2019-04-05 11:39:14 +02:00
|
|
|
local w word=$1; shift
|
|
|
|
|
for w in "$@"; do
|
|
|
|
|
[[ $w = "$word" ]] && return
|
|
|
|
|
done
|
|
|
|
|
return 1
|
2015-08-31 19:24:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
__get_names() {
|
2019-04-05 11:39:14 +02:00
|
|
|
systemd-path | { while IFS=: read -r a b; do echo " $a"; done; }
|
2015-08-31 19:24:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_systemd_path() {
|
2019-04-05 11:39:14 +02:00
|
|
|
local comps
|
2021-04-02 23:33:59 -04:00
|
|
|
local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]} words cword
|
2019-04-05 11:39:14 +02:00
|
|
|
local -A OPTS=(
|
|
|
|
|
[STANDALONE]='-h --help --version'
|
|
|
|
|
[ARG]='--suffix'
|
|
|
|
|
)
|
2015-08-31 19:24:16 +00:00
|
|
|
|
2019-04-05 11:39:14 +02:00
|
|
|
_init_completion || return
|
2015-08-31 19:24:16 +00:00
|
|
|
|
2019-04-05 11:39:14 +02:00
|
|
|
if __contains_word "$prev" ${OPTS[ARG]}; then
|
|
|
|
|
case $prev in
|
|
|
|
|
--suffix)
|
|
|
|
|
comps=''
|
|
|
|
|
;;
|
|
|
|
|
esac
|
2015-08-31 19:24:16 +00:00
|
|
|
COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
|
|
|
|
|
return 0
|
2019-04-05 11:39:14 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [[ "$cur" = -* ]]; then
|
|
|
|
|
COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
|
|
|
|
|
return 0
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
comps=$( __get_names )
|
|
|
|
|
COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
|
|
|
|
|
return 0
|
2015-08-31 19:24:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
complete -F _systemd_path systemd-path
|