You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/bash |
|
# shellcheck disable=SC1090 |
|
|
|
__PROXY__="${0:A:h}/proxy.py" |
|
|
|
proxy() { |
|
source <("$__PROXY__" "$1") |
|
} |
|
|
|
_proxy() { |
|
local -r commands=('enable' 'disable' 'status') |
|
compset -P '*,' |
|
compadd -S '' "${commands[@]}" |
|
} |
|
|
|
compdef '_proxy' 'proxy'
|
|
|