HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/msys64/usr/share/bash-completion/completions/freebsd-update
# bash completion for FreeBSD update tool - freebsd-update -*- shell-script -*-

[[ $OSTYPE == *freebsd* ]] || return 1

_freebsd_update()
{
    local cur prev words cword
    _init_completion || return

    case $prev in
        -b | -d)
            _filedir -d
            return
            ;;
        -f)
            _filedir
            return
            ;;
        -k | -r | -s | -t)
            return
            ;;
    esac

    COMPREPLY=($(compgen -W "fetch cron upgrade install rollback IDS" -- \
        $cur))
} &&
    complete -F _freebsd_update freebsd-update

# ex: filetype=sh