# chrpath(1) completion -*- shell-script -*- proc _chrpath { local cur prev words cword _init_completion || return match $prev { with -v|--version|-h|--help return with -r|--replace _filedir -d return } if [[ $cur == -* ]] { setglobal COMPREPLY = ''( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) ) return } _filedir } && complete -F _chrpath chrpath # ex: ts=4 sw=4 et filetype=sh