mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-24 19:52:58 -08:00
26 lines
584 B
Bash
26 lines
584 B
Bash
# 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
|