summaryrefslogtreecommitdiffstats
path: root/completions/mktemp
blob: a13542a38b9ba9f03918f1969417f4aad5da2de9 (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
29
30
# mktemp(1) completion                                     -*- shell-script -*-

_comp_cmd_mktemp()
{
    local cur prev words cword was_split comp_args
    _comp_initialize -s -- "$@" || return

    local noargopts='!(-*|*[p]*)'
    # shellcheck disable=SC2254
    case "$prev" in
        --help | --version | --suffix)
            return
            ;;
        --tmpdir | -${noargopts}p)
            _comp_compgen_filedir -d
            return
            ;;
    esac

    [[ $was_split ]] && return

    if [[ $cur == -* ]]; then
        _comp_compgen_help ||
            _comp_compgen -- -W '-d -u -q -p -t' # non-GNU fallback
        [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
    fi
} &&
    complete -F _comp_cmd_mktemp mktemp

# ex: filetype=sh