/usr/share/bash-completion/completions/nmcli is in network-manager 0.9.8.8-0ubuntu7.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | # nmcli completion -*- shell-script -*-
# Based on
# https://github.com/GArik/bash-completion/blob/master/completions/nmcli
_nmcli_list()
{
COMPREPLY=( $( compgen -W '$1' -- $cur ) )
}
_nmcli_con_id()
{
local IFS=$'\n'
COMPREPLY=( $( compgen -W "$(nmcli -t -f NAME con list 2>/dev/null )" -- $cur ) )
}
_nmcli_con_uuid()
{
COMPREPLY=( $( compgen -W "$(nmcli -t -f UUID con list 2>/dev/null )" -- $cur ) )
}
_nmcli_ap_ssid()
{
local IFS=$'\n'
COMPREPLY=( $( compgen -W "$(nmcli -t -f SSID dev wifi list 2>/dev/null )" -- $cur ) )
}
_nmcli_ab_bssid()
{
COMPREPLY=( $( compgen -W "$(nmcli -t -f BSSID dev wifi list 2>/dev/null )" -- $cur ) )
}
_nmcli()
{
local cur prev words cword
_init_completion || return
case $prev in
-m|--mode)
COMPREPLY=( $( compgen -W 'tabular multiline' -- $cur ) )
return 0
;;
-f|--fields)
COMPREPLY=( $( compgen -W 'all common' -- $cur ) )
return 0
;;
-e|--escape)
_nmcli_list "yes no"
return 0
;;
id)
_nmcli_con_id
return 0
;;
uuid)
_nmcli_con_uuid
return 0
;;
iface)
_available_interfaces
return 0
;;
bssid)
_nmcli_ab_bssid
return 0
;;
wep-key-type)
_nmcli_list "key phrase"
return 0
;;
esac
if [[ $cword -eq 1 ]] ; then
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--terse --pretty --mode --fields \
--escape --version --help' -- $cur ) )
else
COMPREPLY=( $( compgen -W "nm con dev" -- $cur ) )
fi
else
local object=${words[1]}
local command=${words[2]}
case $object in
nm)
case $command in
enable)
_nmcli_list "true false"
return 0
;;
sleep)
_nmcli_list "true false"
return 0
;;
wifi)
_nmcli_list "on off"
return 0
;;
wwan)
_nmcli_list "on off"
return 0
;;
wimax)
_nmcli_list "on off"
return 0
;;
esac
COMPREPLY=( $( compgen -W 'status permissions enable sleep \
wifi wwan wimax' -- $cur ) )
;;
con)
case $command in
list)
COMPREPLY=( $( compgen -W 'id uuid' -- $cur ) )
return 0
;;
up)
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--nowait --timeout' \
-- $cur ) )
else
COMPREPLY=( $( compgen -W 'id uuid iface ap nsp' \
-- $cur ) )
fi
return 0
;;
down)
COMPREPLY=( $( compgen -W 'id uuid' -- $cur ) )
return 0
;;
delete)
COMPREPLY=( $( compgen -W 'id uuid' -- $cur ) )
return 0
;;
esac
COMPREPLY=( $( compgen -W 'list status up down delete' \
-- $cur ) )
;;
dev)
case $command in
list)
COMPREPLY=( $( compgen -W 'iface' -- $cur ) )
return 0
;;
disconnect)
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--nowait --timeout' \
-- $cur ) )
else
COMPREPLY=( $( compgen -W 'iface' -- $cur ) )
fi
return 0
;;
wifi)
local subcommand=${words[3]}
case $subcommand in
list)
COMPREPLY=( $( compgen -W 'iface bssid' \
-- $cur ) )
return 0
;;
connect)
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '--private \
--nowait --timeout' -- $cur ) )
else
if [[ "$prev" == "connect" ]]; then
_nmcli_ap_ssid
else
COMPREPLY=( $( compgen -W 'password \
wep-key-type iface bssid name' \
-- $cur ) )
fi
fi
return 0
;;
esac
COMPREPLY=( $( compgen -W 'list connect' -- $cur ) )
return 0
;;
esac
COMPREPLY=( $( compgen -W 'status list disconnect wifi' \
-- $cur ) )
;;
esac
fi
return 0
} &&
complete -F _nmcli nmcli
# ex: ts=4 sw=4 et filetype=sh
|