check files updation


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting check files updation
# 1  
Old 09-06-2010
check files updation

Hi All,

Can anyone help to write the script to check files updation?

i have files as mentioned below. which will be updated some time.

i just want to check the last file is updating the data for last 15 mins or not.

if its not updating i want to print NOT OK. if its updating data i want to print OK

files ex

Code:
-rw-rw-rw-   1 lscpusr  lscpusr      120 May 19 10:08 CDR_55000_19_05_2010_10_08_48.log
-rw-rw-rw-   1 lscpusr  lscpusr      111 May 20 11:32 CDR_50000_20_05_2010_11_32_53.log
-rw-rw-rw-   1 lscpusr  lscpusr      120 May 24 16:55 CDR_45000_24_05_2010_16_55_19.log
-rw-rw-rw-   1 lscpusr  lscpusr      120 May 25 16:57 CDR_55000_25_05_2010_16_57_29.log


pls help me to write the script.

Thanks.

the below script is for present time upation. but i want the script for last 15mins


Code:
dt7=`date '+%D'`
F1=`ls -ltr | tail -1 | awk '{print $7}'`
if [ "$F1" == "$dt7" ]
then
echo " FILES update STATUS : NOT OK" >>/tmp/Healthcheck_$dt.log
else
echo " FILES update STATUS :  OK" >>/tmp/Healthcheck_$dt.log
fi

# 2  
Old 09-08-2010
15 minutes is 900 seconds. Get now in epoch seconds the last mtime of the file in epoch seconds. subtract. if the result > 900 seconds the file was not updated in the last 15 minutes.

Code:
now=$(date +%s)
ftime=$(date -r filename  +%s)
$d=(echo "$now  $ftime" | awk '{ print $1 - int($2) }' )
if [ $d -gt 900 ] ; then
   echo 'File not updating'
else 
   echo 'file OK'   
fi

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

File updation on matching key

I have input file like Input.dat with below content RRD 0Z91YUn000000Lk 9000100001 103020151117 STMT151117155527001 0000 2 000000 000004 RRD 0Z91YUn00000ysj 9000100001 103020151117 STMT151117155527001 0000 3 000000 000003 RRD 0Z91YUn00001vGh 9000100002... (12 Replies)
Discussion started by: PRAMOD 96
12 Replies

2. Shell Programming and Scripting

Shell script to find files in dir and updation

Hi, I have the shell script requirement mentioned below : List all java and c files or all files in directory and sub directories' in folder structure in current dir. then search for pattren1 in all files globally and replace with other string . And also check the date... (3 Replies)
Discussion started by: ammulu
3 Replies

3. Shell Programming and Scripting

Config file auto-updation

Hello All, I need to update my .cfg file which is used in the script for almost all runs. myfile.cfg file: var=1 var1=1 run=0 script: #! /bin/sh . /mydir/myfile.cfg echo $var"\t" $var1 exit So, the requirement is that the myfile.cfg should update every time I run the... (10 Replies)
Discussion started by: PikK45
10 Replies

4. UNIX for Dummies Questions & Answers

Check for updation/error/stuck of logs

Hi All, I'm a newbie in Linux Programming.:) Got some 500 processes running and I have around 20-30 logs updating for every 2mins on a server. The logs which i'm referring usually contains book name,run ids(not PID's),process name etc etc. I'm interested in finding out whether some particular... (1 Reply)
Discussion started by: Nand Kishor
1 Replies

5. Shell Programming and Scripting

Perl code to check date and check files in particular dir

Hi Experts, I am checking how to get day in Perl. If it is “Monday” I need to process…below is the pseudo code. Can you please prove the code for below condition. if (today=="Monday" ) { while (current_time LESS THAN 9:01 AM) ... (1 Reply)
Discussion started by: ajaypatil_am
1 Replies

6. Shell Programming and Scripting

to check files updation in sys time

Dear All, Pls help me on this issue. i want to write a script to check whether files updation happening in cuttent time or not. i have set of files in directory which wil update in time basis.. Requirement: If the files are updating in system time i just want to print "files are... (6 Replies)
Discussion started by: steve2216
6 Replies

7. AIX

Problem with updation of 'quota'

Hi, We have recently implemented 'quota' concept for the unix users. softlimit - 230MB hardlimit - 250MB We have applied the quota when few of users are more than the hardlimit,issue is that even though the users cleared the space, still its 'quota' was not updating properly. For some... (0 Replies)
Discussion started by: girish_satyam
0 Replies

8. Red Hat

RPM Updation & Keeping User Change files during removal

Hi All, I have a RPM for an Java based application. Currently it works fine. But recently I want to implement that when newer packages gets installed over the older one, the rpm should only update the older files with the newer one (I know this could be done by rpm -Uvh xxx.rpm), but it... (0 Replies)
Discussion started by: jw_amp
0 Replies

9. Linux

gcc updation on Linux machine

Hi All, I already have gcc complier installed in my machine. Its version is : gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5) I am not sure whethere it's is latest gcc version available. I want to update my gcc version. Can anyone please suggest me what is the latest and stable gcc... (1 Reply)
Discussion started by: bisla.yogender
1 Replies

10. Programming

Directory updation Notification?

Hi, I'm a UNIX newbie .. so forgive me if this question sounds dumb. :) Is it possible for Unix to notify a process that a particular directory has been updated? Rather that the process constantly polling the directory ... Awaiting your replies .. Thanks, VJ (6 Replies)
Discussion started by: vjsony
6 Replies
Login or Register to Ask a Question