Usecases: * Compare current monotonic time to timestamps reported by systemd * Validate time namespace operations * Inspect clock resolutions Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
48 lines
755 B
Text
48 lines
755 B
Text
_lsclocks_module()
|
|
{
|
|
local cur prev OPTS
|
|
COMPREPLY=()
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
|
|
case $prev in
|
|
'-J'|'--json')
|
|
return 0
|
|
;;
|
|
'-n'|'--noheadings')
|
|
return 0
|
|
;;
|
|
'-o'|'--output')
|
|
return 0
|
|
;;
|
|
'-r'|'--raw')
|
|
return 0
|
|
;;
|
|
'-t'|'--time')
|
|
clocks="$(command "$1" --noheadings --raw --output NAME)"
|
|
COMPREPLY=( $(compgen -W "$clocks" -- "$cur") )
|
|
return 0
|
|
;;
|
|
'-h'|'--help'|'-V'|'--version')
|
|
return 0
|
|
;;
|
|
esac
|
|
case $cur in
|
|
-*)
|
|
OPTS="--json
|
|
--noheadings
|
|
--output
|
|
--raw
|
|
--time
|
|
--help
|
|
--version"
|
|
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
|
|
return 0
|
|
;;
|
|
*)
|
|
return 0
|
|
;;
|
|
esac
|
|
return 0
|
|
}
|
|
complete -F _lsclocks_module lsclocks
|