2020-02-28 13:41:43 +00:00
|
|
|
__fish_make_completion_signals
|
2012-10-02 21:22:40 +00:00
|
|
|
|
|
|
|
complete -c timeout -l foreground -d 'Run COMMAND in the foreground'
|
2020-02-28 13:41:43 +00:00
|
|
|
complete -c timeout -s k -l kill-after -d 'Send a KILL signal after DURATION' -x
|
|
|
|
complete -c timeout -s s -l signal -d 'Specify the signal to be sent' -xa "$__kill_signals"
|
|
|
|
complete -c timeout -l preserve-status -d 'Exit with same status as COMMAND'
|
2012-10-02 21:22:40 +00:00
|
|
|
|
2020-02-28 13:41:43 +00:00
|
|
|
# GNU coreutils ver
|
2022-04-21 15:15:20 +00:00
|
|
|
if timeout --version &>/dev/null
|
2020-02-28 13:41:43 +00:00
|
|
|
complete -c timeout -l help -d 'Display this help and exit'
|
|
|
|
complete -c timeout -l version -d 'Output version and exit'
|
|
|
|
complete -c timeout -s v -l verbose -d 'Send diagnostic info to stderr'
|
|
|
|
end
|