Bug in Gnu date?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Bug in Gnu date?
# 8  
Old 10-31-2018
Your timezone is not determined by your locale setting. What does the following command output:
Code:
echo $TZ

# 9  
Old 11-01-2018
Quote:
Originally Posted by Don Cragun
Your timezone is not determined by your locale setting. What does the following command output:
Code:
echo $TZ

It's not set. However the file /etc/timezone contains the string Europe/London; the file /usr/share/zoneinfo/Europe/London links to ../GB, ie /usr/share/zoneinfo/GB.

Or, more succinctly, I am using the default system timezone, which was set to Europe/London when I installed this system.

Andrew

Last edited by apmcd47; 11-01-2018 at 09:53 AM..
# 10  
Old 11-05-2018
I've found this message in the bug-coreutils list. It turns out that date is parsing the + 1 as offset from UTC. This can be seen if I use different numbers in my date invocation:
Code:
$ date --date="15:00   + 3 minutes"
Mon  5 Nov 12:01:00 GMT 2018
$ date --date="15:00 + 2 minutes"
Mon  5 Nov 13:01:00 GMT 2018
$ date --date="15:00 + 1 minute"
Mon  5 Nov 14:01:00 GMT 2018
$ date --date="15:00 - 1 minute"
Mon  5 Nov 16:01:00 GMT 2018
$ date --date="15:00 - 2 minutes"
Mon  5 Nov 17:01:00 GMT 2018
$ date --date="15:00 - 3 minutes"
Mon  5 Nov 18:01:00 GMT 2018

Notice how the minute field stays at 01 rather than being incremented (decremented) by the value I specified.
Now, counter-intuitively, I can place the + 1 minute anywhere in the date definition, so
Code:
$ date --date="+ 1 minute 15:00"
Mon  5 Nov 15:01:00 GMT 2018
$ date --date="+ 5 minutes 15:00"
Mon  5 Nov 15:05:00 GMT 2018
$

works as I wanted it to.

So, it is a (known) bug; it is not the bug I thought it was.

Time to mark as solved.

Andrew
These 2 Users Gave Thanks to apmcd47 For This Post:
# 11  
Old 11-05-2018
Nice sleuthing, I can confirm this is still occurring in version 8.29.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Date: invalid date trying to set Linux date in specific format

i try to set linux date & time in specific format but it keep giving me error Example : date "+%d-%m-%C%y %H:%M:%S" -d "19-01-2017 00:05:01" or date +"%d-%m-%C%y %H:%M:%S" -d "19-01-2017 00:05:01" keep giving me this error : date: invalid date ‘19-01-2017 00:05:01' Please use CODE tags... (7 Replies)
Discussion started by: umen
7 Replies

2. UNIX for Advanced & Expert Users

Regarding question for GNU date

Hello All, Greetings all !! I have a query here, following are the points on same(Adding today's is 31st August 2016 for future reference). 1st Scenario: So while doing some work on GNU date, I wanted to check what was the month(in numbers) by GNU date so I have done following. date... (2 Replies)
Discussion started by: RavinderSingh13
2 Replies

3. Linux

Bug in date command?

Why is the result of this command off (or less) by one hour date --date "1979-10-26 +54 hours" +%Y%m%d%H The result is 1979102805 It actually should be 1979102806 It does it with adding minutes as well and only occurs on Oct. 26, from what I can tell. What's going on here? (9 Replies)
Discussion started by: hsemune
9 Replies

4. Shell Programming and Scripting

Converting a date to friday date and finding Min/Max date

Dear all, I have 2 questions. I have a file with many rows which has date of the format YYYYMMDD. 1. I need to change the date to that weeks friday date(Ex: 20120716(monday) to 20120720). Satuday/Sunday has to be changed to next week friday date too. 2. After converting the date to... (10 Replies)
Discussion started by: 2001.arun
10 Replies

5. UNIX for Dummies Questions & Answers

Getting date -1 day not using GNU date

It's easy as pie to get the date minus one day on opensolaris: date -d "-1 day" +"%Y%m%d"run this command on our crappy Solaris 10 machines however (which I'm guessing doesn't have GNU date running on it) and you get: date: illegal option -- d date: illegal option -- 1 date: illegal option --... (5 Replies)
Discussion started by: rich@ardz
5 Replies

6. Linux

Date from GNU to BSD

Dear all, This should be simple but I cannot figure it out despite reading all the man pages. Could someone please help me translate this code (GNU date) to one that can be read by BSD date?: myDate=$(date -d "$h -$l days" +%Y/%m/%d), where h is a variable of the form DD/MM/YYYY, and l is... (3 Replies)
Discussion started by: thomchad
3 Replies

7. Shell Programming and Scripting

Howto: easy date range iteration/counting on GNU systems in the shell

Should work in any shell, but requires GNU date, although GNU date seems only to be happy for input dates between 1902 and 2037, inclusive (49673 days). Assume $a and $b hold two dates, e.g. set a=2010-03-27 set b=2010-04-04 Marginally faster: iterator: seq -f "$a +%1.0f days" 1 50000 |... (0 Replies)
Discussion started by: laddiebuck
0 Replies

8. UNIX for Dummies Questions & Answers

GNU Date

I know there are some posts on getting the time with milliseconds included and I realize unix may not be the best on this. I have seem some posts where its advised to install the GNU date. Any one know where I can download this as I am struggling to find it. Alternatively - if you have... (5 Replies)
Discussion started by: frustrated1
5 Replies
Login or Register to Ask a Question