1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-04 10:41:11 +02:00
zsh/Completion/Unix/Command/_timeout
2021-10-13 22:02:40 -05:00

20 lines
844 B
Text

#compdef timeout gtimeout
local args
if [[ $service = g* || $OSTYPE != *(freebsd|netbsd|openbsd)* ]]; then
# GNU coreutils or DFly as opposed to Free/Net/OpenBSD implementation
args=(
'(-v --verbose)'{-v,--verbose}'[indicate when signal is sent upon timeout]'
'(- *)--help[display usage information]'
'(- *)--version[display version information]'
)
fi
_arguments -S -A "-" $args \
'--preserve-status[always exit with the same status as command even if it times out]' \
"--foreground[don't propagate timeout to the command children]" \
'(-s --signal)'{-s,--signal}'[specify the signal to send on timeout]:signal:_signals' \
'(-k --kill-after)'{-k,--kill-after}'[followup first signal with SIGKILL if command persists after specified time]:time' \
'1: :_guard "[0-9.]#([smhd]|)" duration' \
'*:::command:_normal'