9f45e81e65
Use compopt -o filenames directly instead.
39 lines
797 B
Bash
39 lines
797 B
Bash
# bash completion for FreeBSD kernel module commands
|
|
|
|
[ $UNAME = FreeBSD ] || return
|
|
|
|
_kldload()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
local moddir=/modules/
|
|
[ -d $moddir ] || moddir=/boot/kernel/
|
|
|
|
compopt -o filenames
|
|
COMPREPLY=( $( compgen -f "$moddir$cur" ) )
|
|
COMPREPLY=( ${COMPREPLY[@]#$moddir} )
|
|
COMPREPLY=( ${COMPREPLY[@]%.ko} )
|
|
|
|
return 0
|
|
} &&
|
|
complete -F _kldload kldload
|
|
|
|
_kldunload()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
COMPREPLY=( $( kldstat | \
|
|
sed -ne "s/^.*[ \t]\{1,\}\($cur[a-z_]\{1,\}\).ko$/\1/p" ) )
|
|
} &&
|
|
complete -F _kldunload kldunload
|
|
|
|
# Local variables:
|
|
# mode: shell-script
|
|
# sh-basic-offset: 4
|
|
# sh-indent-comment: t
|
|
# indent-tabs-mode: nil
|
|
# End:
|
|
# ex: ts=4 sw=4 et filetype=sh
|