summaryrefslogtreecommitdiff
path: root/completions/lastlog
blob: 19e928c202e7323604fe9c9f08452cf5c959a124 (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
# lastlog(8) completion                                    -*- shell-script -*-

_lastlog()
{
    local cur prev words cword split
    _init_completion -s || return

    case $prev in
        --before|--help|--time|-!(-*)@([bt]|h*))
            return
            ;;
        --user|-!(-*)u)
            COMPREPLY=( $(compgen -u -- "$cur") )
            return
            ;;
    esac

    $split && return

    COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
    [[ $COMPREPLY == *= ]] && compopt -o nospace
} &&
complete -F _lastlog lastlog

# ex: filetype=sh