File Manager

Current Path : /snap/core20/current/usr/share/bash-completion/completions/
Upload File :
Current File : //snap/core20/current/usr/share/bash-completion/completions/lastlog

# 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

File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com