File: wtf

package info (click to toggle)
bash-completion 1%3A2.11-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,560 kB
  • sloc: python: 8,228; makefile: 1,766; sh: 275; perl: 85; xml: 29; ansic: 7; ruby: 2
file content (42 lines) | stat: -rw-r--r-- 937 bytes parent folder | download | duplicates (2)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# wtf completion                                           -*- shell-script -*-
# Raphael Droz, 25/09/2009

_wtf()
{
    local cur prev words cword addf
    _init_completion || return

    [[ $prev == -f ]] && _filedir && return
    [[ ${words[*]} == *\ -f* ]] && addf= || addf=-f
    if [[ $cur == -* ]]; then
        COMPREPLY=($addf)
        return
    fi

    local db

    set -- "${words[@]}"
    while (($# > 0)); do
        if [[ $1 == -f ]]; then
            shift
            db=$1
            break
        fi
        shift
    done

    if [[ ! -v db ]]; then
        local f
        for f in "${ACRONYMDB-}" /usr/share/misc/acronyms \
            /usr/share/games/bsdgames/acronyms; do
            [[ -f $f ]] && db="$f" && break
        done
        [[ -v db ]] || return
    fi

    COMPREPLY=($(compgen -W "$(cut -f 1 -s $db* 2>/dev/null) $addf" \
        -- "${cur^^}"))
} &&
    complete -F _wtf wtf

# ex: filetype=sh