summaryrefslogtreecommitdiff
path: root/completions/kldload
blob: 26ab0e19f8a992d60569599eb0d9527f85d7d15b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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} )

    return 0
} &&
complete -F _kldload kldload

# ex: ts=4 sw=4 et filetype=sh