-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_changeip_completions
109 lines (106 loc) · 3.85 KB
/
_changeip_completions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/usr/bin/env bash
# shellcheck shell=bash
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
##@Version : 202207211101-git
# @@Author : Jason Hempstead
# @@Contact : jason@casjaysdev.pro
# @@License : WTFPL
# @@ReadME : changeip --help
# @@Copyright : Copyright: (c) 2022 Jason Hempstead, Casjays Developments
# @@Created : Thursday, Jul 21, 2022 11:01 EDT
# @@File : changeip
# @@Description : change ip script
# @@Changelog :
# @@TODO : Better documentation
# @@Other :
# @@Resource :
# @@sudo/root : yes
# @@Template : completions/system
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
_changeip_completion() {
___findcmd() { find -L "${1:-$CONFDIR/}" -maxdepth ${3:-3} -type ${2:-f} 2>/dev/null | sed 's#'${1:-$CONFDIR}'##g' | grep '^' || return 1; }
local CONFDIR="$HOME/.config/myscripts/changeip"
local SEARCHDIR="${CONFDIR:-$HOME/.config/myscripts/changeip}"
local CASJAYSDEVDIR="${CASJAYSDEVDIR:-/usr/local/share/CasjaysDev/scripts}"
local CONFFILE="settings.conf"
local cur prev words cword opts split
local cur="${COMP_WORDS[$COMP_CWORD]}"
local prev="${COMP_WORDS[$COMP_CWORD - 1]}"
#local SEARCHCMD="$(___findcmd "$SEARCHDIR/" "d" "1" | sort -u)"
local SHOW_COMP_OPTS=""
local FILEDIR=""
local LONGOPTS="--debug --raw --options --config --version --help --dir "
local SHORTOPTS=""
local ARRAY=""
_init_completion || return
if [ "$SHOW_COMP_OPTS" != "" ]; then
local SHOW_COMP_OPTS_SEP="${SHOW_COMP_OPTS//,/ }"
compopt -o $SHOW_COMP_OPTS_SEP
fi
if [[ ${cur} == --* ]]; then
COMPREPLY=($(compgen -W '${LONGOPTS}' -- ${cur}))
elif [[ ${cur} == -* ]]; then
COMPREPLY=($(compgen -W '${SHORTOPTS:---}' -- ${cur})) && compopt -o nospace
else
case "${COMP_WORDS[1]:-$prev}" in
--debug | --raw | --help | --version | --config | --options)
COMPREPLY=($(compgen -W '${ARRAY} ${LONGOPTS} ${SHORTOPTS}' -- ${cur}))
return 0
;;
--dir)
prev="dir"
[ "$cword" -le 2 ] && _filedir -d ||
COMPREPLY=($(compgen -W '${ARRAY}' -- "$cur"))
;;
*)
COMPREPLY=($(compgen -W '${ARRAY}' -- "$cur"))
return 0
;;
esac
fi
#
# if [[ -n "$FILEDIR" ]]; then _filedir; fi
# if [[ $cword -gt 2 ]]; then
# return
# elif [[ $cword == 2 ]]; then
# _filedir
# compopt -o nospace
# return
# elif [[ $cword -eq 1 ]]; then
# COMPREPLY=($(compgen -W '{a..z}{a..z}' -- "${cur}"))
# compopt -o nospace
# return
# if [[ "$ARRAY" = "show__none" ]]; then
# COMPREPLY=($(compgen -W '' -- "${cur}"))
# elif [[ "$ARRAY" = "show__filedir" ]]; then
# _filedir
# elif [[ "$ARRAY" = "show__commands" ]]; then
# COMPREPLY=($(compgen -c -- "${cur}"))
# elif [ "$ARRAY" != "" ]; then
# COMPREPLY=($(compgen -W '${ARRAY}' -- "${cur}"))
# elif [ -n "$OPTS" ]; then
# COMPREPLY=($(compgen -W '${OPTS}' -- "${cur}"))
# else
# COMPREPLY=($(compgen -W '${ARRAY}' -- "${cur}"))
# elif [[ $cword -gt 2 ]]; then
# return
# elif [[ $cword == 2 ]]; then
# _filedir
# compopt -o nospace
# return
# elif [[ $cword -eq 1 ]]; then
# COMPREPLY=($(compgen -W '{a..z}{a..z}' -- "${cur}"))
# compopt -o nospace
# return
# fi
# [[ ${cword} == 2 ]] && _filedir && compopt -o nospace
# [[ $COMP_CWORD -eq 2 ] && COMPREPLY=($(compgen -W '{a..z} {A..Z} {0..9}' -o nospace -- "${cur}"))
# [[ $COMP_CWORD -eq 3 ] && COMPREPLY=($(compgen -W '$(_filedir)' -o filenames -o dirnames -- "${cur}"))
# [[ $COMP_CWORD -gt 3 ] && COMPREPLY=($(compgen -W '' -- "${cur}"))
# prev=""
# compopt -o nospace
$split && return
} &&
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# enable completions
complete -F _changeip_completion changeip