1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-07 09:21:18 +02:00

49441: _timeout: Add OpenBSD

This commit is contained in:
Matthew Martin 2021-10-13 22:01:23 -05:00
parent a18348b897
commit 713588e235
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2021-10-13 Matthew Martin <phy1729@gmail.com>
* 49441: Completion/Unix/Command/_timeout: Add OpenBSD.
2021-10-11 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* 49464: Completion/Linux/Command/_basenc: new completion

View file

@ -2,8 +2,8 @@
local args
if [[ $service = g* || $OSTYPE != *(freebsd|netbsd)* ]]; then
# GNU coreutils or DFly as opposed to Free/NetBSD implementation
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]'