summaryrefslogtreecommitdiffstats
path: root/completions/lastlog
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--completions/lastlog25
1 files changed, 25 insertions, 0 deletions
diff --git a/completions/lastlog b/completions/lastlog
new file mode 100644
index 0000000..214a174
--- /dev/null
+++ b/completions/lastlog
@@ -0,0 +1,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