mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-30 11:38:41 -07:00
18 lines
387 B
Bash
18 lines
387 B
Bash
# Red Hat & Debian GNU/Linux if{up,down} completion -*- shell-script -*-
|
|
|
|
_userland GNU || return 1
|
|
|
|
_ifupdown()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
if [[ $cword -eq 1 ]]; then
|
|
_configured_interfaces
|
|
COMPREPLY=( $(compgen -W '${COMPREPLY[@]}' -- "$cur") )
|
|
fi
|
|
|
|
} &&
|
|
complete -F _ifupdown ifup ifdown ifstatus
|
|
|
|
# ex: filetype=sh
|