diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Command/_date | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_date b/Completion/Unix/Command/_date index be00a0f0a..8b1b389aa 100644 --- a/Completion/Unix/Command/_date +++ b/Completion/Unix/Command/_date @@ -24,15 +24,25 @@ else (freebsd*) _arguments \ '-u[utc]' \ - '-j[do not try to set date]' \ '-n[only set time on current machine]' \ '-d:daylight savingg time value:' \ + '-j[do not try to set date]' \ '-f:parsing format:' \ '-r:seconds since epoch:' \ '-t:minutes west of GMT:' \ '-v:adjustment value:' \ ':format or date:' ;; + (openbsd*) + _arguments \ + '-u[utc]' \ + '-n[only set time on current machine]' \ + '-d:daylight savingg time value:' \ + '-a[gradually skew]' \ + '-r:seconds since epoch:' \ + '-t:minutes west of GMT:' \ + ':format or date:' + ;; esac fi |