# tracepath(8) completion -*- shell-script -*- proc _tracepath { local cur prev words cword _init_completion || return match $prev { with -l return } if [[ $cur == -* ]] { setglobal COMPREPLY = ''( $( compgen -W '$( _parse_usage "$1" )' -- "$cur" ) ) return } _known_hosts_real $cur } && complete -F _tracepath tracepath tracepath6 # ex: ts=4 sw=4 et filetype=sh