mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 23:47:25 +00:00
10 lines
403 B
Fish
10 lines
403 B
Fish
#
|
|
# Completions for timeout
|
|
# SanskritFritz (gmail)
|
|
|
|
complete -c timeout -l foreground -d 'Run COMMAND in the foreground'
|
|
complete -c timeout -s k -l kill-after -d 'Send a KILL signal after DURATION'
|
|
complete -c timeout -s s -l signal -d 'Specify the signal to be sent'
|
|
complete -c timeout -l help -d 'Display this help and exit'
|
|
complete -c timeout -l version -d 'Output version information and exit'
|
|
|