HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/root/usr/share/bash-completion/completions/
Upload File :
Current File : //proc/self/root/usr/share/bash-completion/completions/macof
# macof completion                                         -*- shell-script -*-

_macof()
{
    local cur prev words cword
    _init_completion || return

    case $prev in
        -i)
            _available_interfaces -a
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        COMPREPLY=($(compgen -W '$(_parse_usage "$1")' -- "$cur"))
    fi

} &&
    complete -F _macof macof

# ex: filetype=sh