util-linux/bash-completion/lsclocks
Thomas Weißschuh e9ddea7912 lsclocks: new util to interact with system clocks
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>
2023-06-30 14:12:48 +02:00

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