Hi i want to set my future_date variable to show a date that would be 90 days from today.
set $future_date ""
#set $future_date to date in unixtime stamp 90 days from the current timestamp
Can i do that in tcl?
|
Hi i want to set my future_date variable to show a date that would be 90 days from today.
Can i do that in tcl? |
|||
|
|
|
In Tcl, the
Please look up the |
|||||||||
|
|
The way to do it is to use
OK, that's almost right. Firstly, it doesn't work for about half the year in some locales. The problem? They have DST changes that mean that the length of a day is actually not constant (sometimes, civil days are 23 or 25 hours long). However, applying such a correction requires knowledge of the current timezone (because different parts of the world have different rules). Timezones are specified with reference to the zoneinfo database:
The second problem is that this ignores leap seconds. Mind you, if you're not writing GPS software or something else equally sensitive, this is probably exactly what you want (and if you really do care, you probably have suitable software/algorithms for applying the corrections anyway). The third problem is that this only works from 8.5 onwards (when the
This isn't to be preferred, as it doesn't get timezone handling right (well, might use the current system timezone or might use UTC[*]) and is built on top of a highly non-obvious time string parser. Yet for all that, it's the best option pre-8.5. [*] Do not underestimate how odd this can get; I remember dealing with a bug in a third party printer driver which, when loaded into a separate process on Windows, would change the system timezone for all running applications until the print run finished. Even confirming what was actually happening was hard (as was picking my jaw up off the floor afterward). |
|||
|
|