summaryrefslogtreecommitdiff
path: root/completions/kldload
blob: ddd103f33104287f70e01994409dec80e6e3f8c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# FreeBSD kldload completion

[[ $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

# 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