Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.220.32.12
# 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
|