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