summaryrefslogtreecommitdiff
path: root/completions/net-tools
blob: 0019ce77073e421da8e0a4cc251ae368557aa735 (plain)
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
110
111
112
113
114
# bash completion for net tools

_mii_tool()
{
    local cur prev words cword split
    _init_completion -s || return

    case $prev in
        -F|--force)
            COMPREPLY=( $( compgen -W '100baseTx-FD 100baseTx-HD \
                10baseT-FD 10baseT-HD' -- "$cur" ) )
            return 0
            ;;
        -A|--advertise)
            COMPREPLY=( $( compgen -W '100baseT4 100baseTx-FD 100baseTx-HD \
                10baseT-FD 10baseT-HD' -- "$cur" ) )
            return 0
            ;;
    esac

    $split && return 0

    if [[ "$cur" == -* ]]; then
        COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
        [[ $COMPREPLY == *= ]] && compopt -o nospace
    else
        _available_interfaces -a
    fi
} &&
complete -F _mii_tool -o default mii-tool

_mii_diag()
{
    local cur prev words cword split
    _init_completion -s || return

    case $prev in
        -F|-A|--advertise|--fixed-speed)
            COMPREPLY=( $( compgen -W '100baseT4 100baseTx \
                100baseTx-FD 100baseTx-HD 10baseT 10baseT-FD \
                10baseT-HD' -- "$cur" ) )
            return 0
            ;;
    esac

    $split && return 0

    if [[ "$cur" == -* ]]; then
        COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
    else
        _available_interfaces -a
    fi
} &&
complete -F _mii_diag -o default mii-diag

# Linux route(8) completion
#
[ $UNAME = Linux ] &&
_route()
{
    local cur prev words cword
    _init_completion || return

    if [ "$prev" = dev ]; then
        _available_interfaces
        return 0
    fi

    # Remove already given options from completions
    local opt found i
    for opt in add del -host -net netmask metric mss window irtt reject mod \
        dyn reinstate dev default gw; do
        found=false
        for (( i=1; i < ${#words[@]}-1; i++ )); do
            [ "${words[i]}" = "$opt" ] && found=true && break
        done
        $found || COMPREPLY[${#COMPREPLY[@]}]="$opt"
    done

    COMPREPLY=( $( compgen -W '"${COMPREPLY[@]}"' -- "$cur" ) )
} &&
complete -F _route route

_ether_wake()
{
    local cur prev words cword
    _init_completion -n : || return

    case $prev in
        -i)
            _available_interfaces
            return 0
            ;;
        -p)
            return 0
            ;;
    esac

    if [[ $cur == -* ]]; then
        COMPREPLY=( $( compgen -W '$( _parse_help "$1" -u ) -V' -- "$cur" ) )
        return 0
    fi

    _mac_addresses
} &&
complete -F _ether_wake ether-wake

# Local variables:
# mode: shell-script
# sh-basic-offset: 4
# sh-indent-comment: t
# indent-tabs-mode: nil
# End:
# ex: ts=4 sw=4 et filetype=sh