mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-30 03:28:35 -07:00
21 lines
477 B
Bash
21 lines
477 B
Bash
# FreeBSD kldload completion -*- shell-script -*-
|
|
|
|
[[ $OSTYPE == *freebsd* ]] || return 1
|
|
|
|
_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} )
|
|
|
|
} &&
|
|
complete -F _kldload kldload
|
|
|
|
# ex: filetype=sh
|