03-17-2008
at present i have this:
for file in `find ${my_dir}/ -name "*_statsfile_??????????????.gz" -print`
do
ONEDAY=86400
NOW=$(date -u +%Y%m%d%H%M%S)
FILEDATE=`echo $file | sed -e 's/^.*_stats_//g' -e 's/\.gz$//g'`
((DIFF=$NOW - $FILEDATE))
CALC_DIFF=$(($DIFF / $ONEDAY))
echo "[$file], Current Time: $NOW. File Time: $FILEDATE. Difference: $CALC_DIFF."
done
both dates need to be in UTC. Is there a way to make them BOTH UTC. the date 'NOW' is UTC but the 'FILEDATE' isnt.
10 More Discussions You Might Find Interesting
1. UNIX for Advanced & Expert Users
Hi...I need some help with a date script. I need to allow the user to enter the month (alpha) day (int) and year (YYYY) and count the difference in number of days since Jan 1, 1952 to the users date. I've been messing with this for about 10 hours and I think I'm just making the script worse =(
... (1 Reply)
Discussion started by: mtnbaby
1 Replies
2. UNIX for Dummies Questions & Answers
Hi
Can any buddy give mi a simple program or logic or command which will get
difference between two dates
ex:diff between 20051008 2005908 is 24hours 12 min 2 sec
regards (1 Reply)
Discussion started by: rajuMBT
1 Replies
3. Shell Programming and Scripting
if there are two date one is entered by user
and another is system date than how can we finds day difference
between these two date
try to make it within 4 lines (2 Replies)
Discussion started by: piyush_movadiya
2 Replies
4. Shell Programming and Scripting
Hi All!
I would like to know the time difference between two dates which are in same format...
$ date -r abc
Thu Oct 29 09:40:37 EDT 2009
$ date
Fri Oct 30 02:07:03 EDT 2009
i would like to find the diff between these two dates in hours..please help..:)
Regards,
Kiran (3 Replies)
Discussion started by: dddkiran
3 Replies
5. Shell Programming and Scripting
Dear all,
I fancy that I'm pretty competent in ksh, but I have someone on HP-UX wanting me to script up a simple interface to handle user alterations rather than giving them high privileges to run up SAM. This is all fairly straightforward, but I'm stuck on an epoch date issue.
When we have... (6 Replies)
Discussion started by: rbatte1
6 Replies
6. Homework & Coursework Questions
1. The problem statement, all variables and given/known data:
The problem i have is that i probably make a few mistake here in the code but don't know what it is and i try to get the date difference but don't know where to add the days_in_month function
2. Relevant commands, code,... (1 Reply)
Discussion started by: mgyeah
1 Replies
7. Programming
I tried the below code to find difference between two dates. It works fine if the day of the month is 2-digit number. But it fails when we have a single-digit day of month(ex:1-9). my code is as below. please help me soon.
#!/usr/bin/perl -w
use strict;
use Time::Local;
... (2 Replies)
Discussion started by: anandrec
2 Replies
8. Shell Programming and Scripting
HI All ,
i need a bash script to find the number of days between two dates .
Format YYYY-MM-DD
THanks,
Neil (1 Reply)
Discussion started by: nevil
1 Replies
9. AIX
Hi Everyone,
We are having an issue with date and date -u in our AIX Systems.
We have checked environment variable TZ and /etc/environment and however, we could not rectify the difference.
>date
Thu Mar 19 22:31:40 IST 2015
>date -u
Thu Mar 19 17:01:44 GMT 2015
Any clue... (5 Replies)
Discussion started by: madhav.kunapa
5 Replies
10. Shell Programming and Scripting
Hi,
I created a script for finding the duration of a job using the start and end time of the job. But the command doesnt calculate correct value if the duration is more than 24 hours. Any help would be really good
.
cat test1 --- start time
03/27/15 17:41:00
03/24/15 11:58:04
03/23/15... (3 Replies)
Discussion started by: rogerben
3 Replies
GMDATE(3) 1 GMDATE(3)
gmdate - Format a GMT/UTC date/time
SYNOPSIS
string gmdate (string $format, [int $timestamp = time()])
DESCRIPTION
Identical to the date(3) function except that the time returned is Greenwich Mean Time (GMT).
PARAMETERS
o $format
- The format of the outputted date string. See the formatting options for the date(3) function.
o $timestamp
- The optional $timestamp parameter is an integer Unix timestamp that defaults to the current local time if a $timestamp is not
given. In other words, it defaults to the value of time(3).
RETURN VALUES
Returns a formatted date string. If a non-numeric value is used for $timestamp, FALSE is returned and an E_WARNING level error is emitted.
CHANGELOG
+--------+---------------------------------------------------+
|Version | |
| | |
| | Description |
| | |
+--------+---------------------------------------------------+
| 5.1.0 | |
| | |
| | The valid range of a timestamp is typically from |
| | Fri, 13 Dec 1901 20:45:54 GMT to Tue, 19 Jan 2038 |
| | 03:14:07 GMT. (These are the dates that corre- |
| | spond to the minimum and maximum values for a |
| | 32-bit signed integer). However, before PHP 5.1.0 |
| | this range was limited from 01-01-1970 to |
| | 19-01-2038 on some systems (e.g. Windows). |
| | |
| 5.1.1 | |
| | |
| | There are useful constants of standard date/time |
| | formats that can be used to specify the $format |
| | parameter. |
| | |
+--------+---------------------------------------------------+
EXAMPLES
Example #1
gmdate(3) example
When run in Finland (GMT +0200), the first line below prints "Jan 01 1998 00:00:00", while the second prints "Dec 31 1997
22:00:00".
<?php
echo date("M d Y H:i:s", mktime(0, 0, 0, 1, 1, 1998));
echo gmdate("M d Y H:i:s", mktime(0, 0, 0, 1, 1, 1998));
?>
SEE ALSO
date(3), mktime(3), gmmktime(3), strftime(3).
PHP Documentation Group GMDATE(3)