# ether-wake(8) completion -*- shell-script -*- proc _ether_wake { local cur prev words cword _init_completion -n : || return match $prev { with -i _available_interfaces -a return 0 with -p return 0 } if [[ $cur == -* ]] { setglobal COMPREPLY = ''( $( compgen -W '$( _parse_help "$1" -u ) -V' -- "$cur" ) ) return 0 } _mac_addresses } && complete -F _ether_wake ether-wake # ex: ts=4 sw=4 et filetype=sh