From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: location@lists.ipfire.org Subject: [PATCH 1/2] Add bash-completion file for the location command. Date: Fri, 24 Feb 2023 17:22:05 +0100 Message-ID: <20230224162206.89971-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6896827097253032808==" List-Id: --===============6896827097253032808== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Hans-Christoph Steiner Signed-off-by: Stefan Schantl --- bash-completion/location | 151 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 151 insertions(+) create mode 100644 bash-completion/location diff --git a/bash-completion/location b/bash-completion/location new file mode 100644 index 0000000..66fc6c1 --- /dev/null +++ b/bash-completion/location @@ -0,0 +1,151 @@ +# location(1) completion -*- shell-script = -*- +# +# bash-completion - part of libloc +# +# Copyright (C) 2020,2023 Hans-Christoph Steiner +# +# This program 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. +# +# This program 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 Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see . + +__location_init() { + if type -t _init_completion >/dev/null; then + _init_completion -n : || return + else + # manual initialization for older bash completion versions + COMPREPLY=3D() + cur=3D"${COMP_WORDS[COMP_CWORD]}" + prev=3D"${COMP_WORDS[COMP_CWORD-1]}" + fi + + (( $# >=3D 1 )) && __complete_${1} + __ltrim_colon_completions "$cur" +} + +__complete_options() { + case "${prev}" in + --directory) + _filedir -d + return 0;; + --cron) + COMPREPLY=3D( $( compgen -W "daily weekly monthly" -- $cur ) ) + return 0;; + --family) + COMPREPLY=3D( $( compgen -W "ipv6 ipv4" -- $cur ) ) + return 0;; + --format) + COMPREPLY=3D( $( compgen -W "ipset list nftables xt_geoip" -- $cur ) ) + return 0;; + esac + + case "$cur" in + -*) + COMPREPLY=3D( $( compgen -W "--help ${lopts}" -- $cur ) ) + return 0;; + esac +} + +__complete_dump() { + __complete_options +} + +__complete_get_as() { + __complete_options +} + +__complete_export() { + lopts=3D"--directory --family --format" + __complete_options +} + +__complete_list_networks_by_as() { + lopts=3D"--family --format" + __complete_options +} + +__complete_list_networks_by_cc() { + lopts=3D"--family --format" + __complete_options +} + +__complete_list_networks_by_flags() { + lopts=3D"--anonymous-proxy --satellite-provider --anycast --drop --famil= y --format" + __complete_options +} + +__complete_list_bogons() { + lopts=3D"--family --format" + __complete_options +} + +__complete_list_countries() { + lopts=3D"--show-name --show-continent" + __complete_options +} + +__complete_lookup() { + __complete_options +} + +__complete_search_as() { + __complete_options +} + +__complete_update() { + lopts=3D"--cron" + __complete_options +} + +__complete_version() { + __complete_options +} + +__complete_verify() { + __complete_options +} + +# for f in `location|grep -Eo '[a-z,-]+,[a-z,-]+'| sed 's/,/ /g'`; do printf= '%s \\\n' $f; done|sort -u +__cmds=3D" \ +dump \ +export \ +get-as \ +list-bogons \ +list-countries \ +list-networks-by-as \ +list-networks-by-cc \ +list-networks-by-flags \ +lookup \ +search-as \ +update \ +verify \ +version \ +" + +for c in $__cmds; do + eval "_location_${c} () { + local cur prev lopts + __location_init ${c//-/_} + }" +done + +_location() { + local cmd + cmd=3D${COMP_WORDS[1]} + + [[ $__cmds =3D=3D *\ $cmd\ * ]] && _location_${cmd} || { + (($COMP_CWORD =3D=3D 1)) && COMPREPLY=3D( $( compgen -W "${__cmd= s}" -- $cmd ) ) + } +} + +complete -F _location location + +return 0 --=20 2.30.2 --===============6896827097253032808==--