Comparing Time


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Comparing Time
# 1  
Old 12-02-2008
Comparing Time

Hi guys,
Is there a way whereby i can grep the last updated time of a log file and compare it with the server time?

Thanks
# 2  
Old 12-02-2008
# 3  
Old 12-02-2008
Thanks Ygor, but when i look at the coding, it says "perl" at the starting. Is this a perl script or linux?
# 4  
Old 12-02-2008
Hi Ygor, can u show me the code in linux shell script? I need to grep the time of a file and check to see if the file has been stuck for more then 5 minutes
# 5  
Old 12-02-2008
Sorry, not stuck, What i meant is I need to have this condition whereby if the file hasn't been updating the past 5 mins, then i'll do something else

Thanks
# 6  
Old 12-02-2008
If your linux system has the stat user command -
Code:
now=$(date +%s)
filetime=$( stat -c %Y logfilename )
difference=$(( $now - $filetime))
if [ $difference -gt 300 ] ; then
    echo "logfilename was modified than five minutes ago"
fi


Last edited by jim mcnamara; 12-02-2008 at 03:28 AM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Comparing time differences between 2 Solaris servers

Good day to all. I'm relatively new in using the Sun Solaris OS. I would like to request your expertise in helping to solve a problem that I have at work. Not sure if this has been asked before but I have tried searching through the internet to no avail. Basically I have 2 sun solaris... (8 Replies)
Discussion started by: Fossil_84
8 Replies

2. Shell Programming and Scripting

Comparing different time formats

I am trying to do a comparison of files based on their last modified date. I am pulling the first file from a webapp folder using curl. curl --silent -I http://localhost:8023/conf/log4j2.xml | grep Last Last-Modified: Tue, 22 Mar 2016 22:02:18 GMT The second file is on local disk. stat... (2 Replies)
Discussion started by: Junaid Subhani
2 Replies

3. HP-UX

Comparing the timestamp of the file to current time

I have a file like this -rwxr-xr-x 1 rewq other 168 Jan 13 07:05 check_files.sh I want to compare (check_files.sh time) with the current time to see if its is older than 2 hours or not if it is not older than 2 hrs then do something.can someone help me on this?.I dont... (7 Replies)
Discussion started by: haadiya
7 Replies

4. Shell Programming and Scripting

Comparing files by date/time

I am trying to compare identically named files in different directories and replace a file only with a newer version. Is there a way of doing this? TIA (4 Replies)
Discussion started by: wbport
4 Replies

5. Shell Programming and Scripting

Comparing time is bash

Hi, I have a question on comparing time using bash. Tried searching a lot up but couldn't figure it out. So I have this: CURRENT_TIME=$(date +%H:%M) if then echo "Continue" else echo "Quit" fi I tried a lot of different combinations of comparing, but nothing seems to work. Any help... (2 Replies)
Discussion started by: r4v3n
2 Replies

6. Shell Programming and Scripting

Comparing Time

I want to write a shell script which will run when a new terminal is opened and will display Good Morning or Good Evening depending on the current time? (2 Replies)
Discussion started by: shounakdas
2 Replies

7. Shell Programming and Scripting

comparing time stamps

Hello All, I'm generating timestamps (file creation timestamps) for all the files in a directory. I need to compare all the timestamps. for example if i have 4 files and their timestamps are 20091125114556, 20091125114556,20091125114556,20091125114556 respectively. I need to differentiate... (9 Replies)
Discussion started by: RSC1985
9 Replies

8. UNIX for Dummies Questions & Answers

comparing time stamps

Hello All, I'm generating timestamps (file creation timestamps) for all the files in a directory. I need to compare all the timestamps. for example if i have 4 files and their timestamps are 20091125114556, 20091125114556,20091125114556,20091125114556 respectively. I need to differentiate... (1 Reply)
Discussion started by: RSC1985
1 Replies

9. UNIX for Dummies Questions & Answers

Comparing time in unix

Hi All, i have two variables with date/time in the following format: 07/09/08 02:38:32 (mm/dd/yy hh:mm:ss). I need to do a comparison to find latest one. Can anyone please help me? Regards, G1 (2 Replies)
Discussion started by: jeevan_fimare
2 Replies

10. UNIX for Dummies Questions & Answers

Comparing files named by date/time

I've looked at several of the previous posts and can't seem to find any that pertain to my problem, I'd appreciate some help if possible. I have a directory with numerous logs of various names all named by heading and date ie. dog.20050529.log dog.20050530.log ... (2 Replies)
Discussion started by: gillr
2 Replies
Login or Register to Ask a Question