# bash completion for FreeBSD update tool - freebsd-update -*- shell-script -*- [[ $OSTYPE == *freebsd* ]] || return 1 proc _freebsd_update { local cur prev words cword _init_completion || return match $prev { with -b|-d _filedir -d return with -f _filedir return with -k|-r|-s|-t return } setglobal COMPREPLY = ''( $(compgen -W "fetch cron upgrade install rollback IDS" -- \ $cur) ) } && complete -F _freebsd_update freebsd-update # ex: ts=4 sw=4 et filetype=sh