From 541dc6998e2384d7ce5130ccc5a25b8b8aa14dbf Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Wed, 7 Sep 2005 19:10:46 +0000 Subject: 21704: completion for Solaris, and FreeBSD. --- Completion/Unix/Command/_date | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) (limited to 'Completion/Unix/Command/_date') diff --git a/Completion/Unix/Command/_date b/Completion/Unix/Command/_date index 929b35c84..be00a0f0a 100644 --- a/Completion/Unix/Command/_date +++ b/Completion/Unix/Command/_date @@ -1,6 +1,7 @@ #compdef date -_arguments \ +if _pick_variant -r is_gnu gnu="Free Software Foundation" unix --version; then + _arguments \ '-d[date]:time string:' \ '-f[file]:date file:_files' \ '-I[iso-8601]:time spec:' \ @@ -12,3 +13,26 @@ _arguments \ '*=FILE*:file:_files' \ '*=DATEFILE*:date file:_files' \ ':format or date:' +else + case "$OSTYPE" in + (solaris*) + _arguments \ + '-u[utc]' \ + '-a:adjustment:' \ + ':format or date:' + ;; + (freebsd*) + _arguments \ + '-u[utc]' \ + '-j[do not try to set date]' \ + '-n[only set time on current machine]' \ + '-d:daylight savingg time value:' \ + '-f:parsing format:' \ + '-r:seconds since epoch:' \ + '-t:minutes west of GMT:' \ + '-v:adjustment value:' \ + ':format or date:' + ;; + esac +fi + -- cgit 1.4.1