mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-09 20:33:34 -08:00
26 lines
542 B
Bash
26 lines
542 B
Bash
# ipcalc(1) completion -*- shell-script -*-
|
|
|
|
_ipcalc()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
case $prev in
|
|
--help | --version | --split | -[hs])
|
|
return
|
|
;;
|
|
esac
|
|
|
|
# --split takes 3 args
|
|
local i
|
|
for i in {1..3}; do
|
|
[[ ${words[cword - i]} == -@(-split|s) ]] && return
|
|
done
|
|
|
|
[[ $cur != -* ]] ||
|
|
COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
|
|
} &&
|
|
complete -F _ipcalc ipcalc
|
|
|
|
# ex: filetype=sh
|