date/time


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting date/time
# 1  
Old 05-14-2002
date/time

Is there a way of saying I want to grab the time minus half an hour without converting time to a string?

I need to compare two system timestamps to see if there is half an hour between them for error messages going through our systems and I can't find any responses that don't use long conversions first. Is there such a thing? I have used the date command to get the two timestamps.

TIME=$(date '+%H:%M:%S')

What I want to say then is - if the first date is over half an hour older than the current date then remove a lock file we have put down, but I am unsure how to compare the two.

Any help would be greatly appreciated.


Smilie
# 2  
Old 05-14-2002
If we assume that the two systems are in the same region and that the clocks of these systems are at least set on the same day (hope so!!) and if we also assume that the seconds don't matter, you just need to do your calculations based on hours and minutes. I know that won't work around midnight, so just set a cron to run that anytime elese than around midnight.

I ignore how you'll get the time from both systems (ftp file, remsh, your logs names, etc), but I'd do the following arithmetic from both systems timestamps (ksh syntax):

(( minutes1=`date +"%H"`*60 + `date +"%M"` )) #system 1
(( minutes2=`date +"%H"`*60 + `date +"%M"` )) #system 2
(( minutesDiff=$minutes2-$minutes1 ))

if [ $minutesDiff > 30 ]
then
# do your stuff here
fi

Hope it'll point you to the right direction... Smilie
# 3  
Old 05-14-2002
Also, if you use GNU date (from the shutils package), you can do something like this:

Code:
_past=$(date --date="30 minutes ago" +%Y%m%d%H%M)
_now=$(date +%Y%m%d%H%M)
_diff=$((_now-_past))
[[ $_diff -gt 30 ]] && echo "More that 30 minutes" || echo "Less than 30 minutes"

The advantages of date were high enough that it's been installed for use in some of our production scripts at work. Instead of replacing the date command, we have a seperate binary called gdate.

It's a great help for that reason alone.
# 4  
Old 05-14-2002
Doh!
I realized what's wrong with mine...
If the hours are different, they won't match up...

If you don't feel like doing a bunch of evaluating and error handling, then the best way to do it would be above, when the poster grabs the minutes, and multiplies by 60...
# 5  
Old 05-16-2002
date/time

Thanks for that. We now have a working monitoring script.
Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Displaying current date time of EDT in IST time

Hi Folks, My server time is in EDT. And i am sending automated mails from that server in which i need to display the current date time as per IST (GMT+5:30). Please advice how to display the date time as per IST. IST time leads 9:30 mins to EDT. and i wrote something like below. ... (6 Replies)
Discussion started by: Showdown
6 Replies

2. Shell Programming and Scripting

Adding time to date time in UNIX shell scipting

I needed some help in adding a duration (in seconds) to a start time (in hhmmss format) and a start date (in mmddyy format) in order to get an end date and end time. The concept of a leap year is also to be considered while incrementing the day. The code/ function that I have formed so far is as... (3 Replies)
Discussion started by: codehelp04
3 Replies

3. Solaris

modifying date and time and time zone on solaris 5.10 with (redundant server) veritas

I have a cluster of two Solaris server (veritas cluster). one working and the other is standby I am going to change the date on them , and am looking for a secure solution as it is giving an important service. my opinion is that the active one doesn't need to be restarted (if I don't change the... (1 Reply)
Discussion started by: barry1946
1 Replies

4. UNIX for Dummies Questions & Answers

Adding hours and minutes to current date (Only to date not to time)

Hi, I want to add some hours and minutes to the current date. For example, if the current date is "July 16, 2012 15:20", i want to add 5 hours 30 minutes to "July 16, 2012 00:00" not to "July 16, 2012 15:20". Please help. Thanks! (4 Replies)
Discussion started by: manojgarg
4 Replies

5. UNIX for Dummies Questions & Answers

Converting string date time to unix time in AWK

I'd like to convert a date string in the form of sun aug 19 09:03:10 EDT 2012, to unixtime timestamp using awk. I tried This is how each line of the file looks like, different date and time in this format Sun Aug 19 08:33:45 EDT 2012, user1(108.6.217.236) all: test on the 17th ... (2 Replies)
Discussion started by: bkkid
2 Replies

6. UNIX for Dummies Questions & Answers

Shell Scripts - shows today’s date and time in a better format than ‘date’ (Uses positional paramete

Hello, I am trying to show today's date and time in a better format than ‘date' (Using positional parameters). I found a command mktime and am wondering if this is the best command to use or will this also show me the time elapse since 1/30/70? Any help would be greatly appreciated, Thanks... (3 Replies)
Discussion started by: citizencro
3 Replies

7. Homework & Coursework Questions

Date comparison with 'string date having slashes and time zone' in Bash only

1. The problem statement, all variables and given/known data: I have standard web server log file. It contains different columns (like IP address, request result code, request type etc) including a date column with the format . I have developed a log analysis command line utility that displays... (1 Reply)
Discussion started by: TariqYousaf
1 Replies

8. Shell Programming and Scripting

how to convert date time to epoch time in solaris

Hi, Is there any easy way to convert date time(stored in shell variable ) to epoch time in solaris box? As +%s is working on linux but not on solaris, also -d option is not working. Any suggestion please? (6 Replies)
Discussion started by: anshuman0507
6 Replies

9. Shell Programming and Scripting

Convert Epoch Time to Standard Date and Time & Vice Versa

Hi guys, I know that this topic has been discuss numerous times, and I have search the net and this forum for it. However, non able to address the problem I faced so far. I am on Solaris Platform and unable to install additional packages like the GNU date and gawk to make use of their... (5 Replies)
Discussion started by: DrivesMeCrazy
5 Replies

10. Shell Programming and Scripting

date and time on every time pressing return key

Hi all, I have a situation here, I want that every time when i press "enter key" in bash prompt i want the date command to be executed. i have tried to make some changes in "/etc/bashrc" but no luck. Thanx in advance (1 Reply)
Discussion started by: xander
1 Replies
Login or Register to Ask a Question