to check files updation in sys time


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting to check files updation in sys time
# 1  
Old 08-23-2010
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 updating" . If its not updating i just want to print "Files not updating in current time"



ex :
Code:
-r--r--r--   1 lscpusr  lscpusr  10000107 Aug 23 13:31 SCP_23_08_2010_13_23_21.log
-r--r--r--   1 lscpusr  lscpusr  10000108 Aug 23 13:39 SCP_23_08_2010_13_31_19.log
-r--r--r--   1 lscpusr  lscpusr  10000150 Aug 23 13:47 SCP_23_08_2010_13_39_20.log
-r--r--r--   1 lscpusr  lscpusr  10000110 Aug 23 13:56 SCP_23_08_2010_13_47_38.log
-r--r--r--   1 lscpusr  lscpusr  10000066 Aug 23 14:04 SCP_23_08_2010_13_56_04.log
-r--r--r--   1 lscpusr  lscpusr  10000020 Aug 23 14:12 SCP_23_08_2010_14_04_24.log
-r--r--r--   1 lscpusr  lscpusr  10000056 Aug 23 14:20 SCP_23_08_2010_14_12_28.log
-r--r--r--   1 lscpusr  lscpusr  10000094 Aug 23 14:28 SCP_23_08_2010_14_20_32.log
-r--r--r--   1 lscpusr  lscpusr  10000227 Aug 23 14:36 SCP_23_08_2010_14_28_31.log
-r--r--r--   1 lscpusr  lscpusr   4150442 Aug 23 14:39 SCP_23_08_2010_14_36_32.log

PLs help on this issue.

Thanks in advance.

Moderator's Comments:
Mod Comment If posting code or terminal output please use CODE-Tags. Thank you.

Last edited by bakunin; 08-23-2010 at 01:45 PM..
# 2  
Old 08-23-2010
I'd gladly help you if i just could understand what you want. Could you please elaborate on what your requirement is and what you intend to do with this directory listing?

bakunin
# 3  
Old 08-23-2010
Thanks bakunin,

Actually files will be generated in time basis in the directory named "backup".
maximum file size is 10MB. if it reach 10MB it will write another file that i mentioned code below.

i want to write a program to check these files. whether these files are updating regularly or not. it should update regularly. if it is update regularly i need to print in echo " files are updating " ... if its not updating last 15 mins , i want to print in echo " files not updating"


Code:
r--r--r--   1 lscpusr  lscpusr  10000108 Aug 23 13:39 SCP_23_08_2010_13_31_19.log
-r--r--r--   1 lscpusr  lscpusr  10000150 Aug 23 13:47 SCP_23_08_2010_13_39_20.log
-r--r--r--   1 lscpusr  lscpusr  10000110 Aug 23 13:56 SCP_23_08_2010_13_47_38.log
-r--r--r--   1 lscpusr  lscpusr  10000066 Aug 23 14:04 SCP_23_08_2010_13_56_04.log
-r--r--r--   1 lscpusr  lscpusr  10000020 Aug 23 14:12 SCP_23_08_2010_14_04_24.log
-r--r--r--   1 lscpusr  lscpusr  10000056 Aug 23 14:20 SCP_23_08_2010_14_12_28.log
-r--r--r--   1 lscpusr  lscpusr  10000094 Aug 23 14:28 SCP_23_08_2010_14_20_32.log
-r--r--r--   1 lscpusr  lscpusr  10000227 Aug 23 14:36 SCP_23_08_2010_14_28_31.log
-r--r--r--   1 lscpusr  lscpusr   4150442 Aug 23 14:39 SCP_23_08_2010_14_36_32.log

pls look the bold marked timing in code.. i want to compare file time with system time.. basic thing in this directory is files will update till it reach 10MB. after tht i'll write another file. i want to compare system timing with latest file.

Hope you understand my requirement.

Pls reply for if u want more clarity.

Last edited by Scott; 08-23-2010 at 02:21 PM.. Reason: Fixed code tags. Highlight your code before clicking the # button :)
# 4  
Old 08-23-2010
Something like this,

Code:
#!/bin/sh

while true
do
var=`find /backup -name "SCP_*.log" -type f -mmin -15`
if [ -z $var ]
then
 echo "File Not Updating"
else
 echo "Success : File Updating"
fi
sleep 300
done

# 5  
Old 08-23-2010
Code:
#!/bin/bash
eval $(stat -s file)
[ $st_ctime -lt $(($(date "+%s") - 900)) ] && echo No update || echo Update

# 6  
Old 08-24-2010
Dear pravin27..

Thanks.. but i'm getting some bugs. pls check the code and suggest me.

bugs:
Code:
find: bad option -mmin
find: [-H | -L] path-list predicate-list

Thanks in advance.

Last edited by Scott; 08-24-2010 at 07:32 AM.. Reason: Code tags
# 7  
Old 08-24-2010
Try this,

Code:
#!/bin/sh

while true
do

TSTAMP=$(perl -e '($ss, $mm, $hh, $DD, $MM, $YY) = localtime(time() - 900);
printf "%04d%02d%02d%02d%02d", $YY + 1900, $MM + 1, $DD, $hh, $mm')

touch -t $TSTAMP file1
var=`find /backup -name "SCP_*.log" -type f -newer file1`
if [ -z $var ]
then
 echo "File Not Updating"
else
 echo "Success : File Updating"
fi
sleep 120
done

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Bash script to check the files based up on UST time.

i have 3 regions like AWS,EMEA,APJ and i use to get 3 files like a,b,c files at 3 am ust for AWS region in common shared path and x,y,z files At 10 am ust for EMEA and 1,2,3,4,5 files at 11 pm UST for APJ region. In this files name wont change daily it remain same but the file name is not same for... (2 Replies)
Discussion started by: saranath
2 Replies

2. Programming

Interactive Python 3.5+ sys.stdout.write() AND sys.stderr.write() bug?

(Apologies for any typos.) OSX 10.12.3 AND Windows 10. This is for the serious Python experts on at least 3.5.x and above... In script format sys.stdout.write() AND sys.stderr.write() seems to work correctly. Have I found a serious bug in the interactive sys.stdout.write() AND... (2 Replies)
Discussion started by: wisecracker
2 Replies

3. 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

4. Shell Programming and Scripting

Move all files except sys date (today) files in Solaris 10

I want to move all files from one directory to another directory excluding today (sysdate files) on daily basis. file name is in pattern file_2013031801, file_2013031802 etc (2 Replies)
Discussion started by: khattak
2 Replies

5. 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

6. UNIX for Dummies Questions & Answers

check if two files exists at the same time in one location

Hi friends, I am trying to check if the two files i am expecting are created in a specific location. if both files does not exist, do an echo if -a ]; then echo "files not found" fi It gives me the following message: bash: Please help! :) (3 Replies)
Discussion started by: kokoro
3 Replies

7. Shell Programming and Scripting

ftp files from local sys to unix server

Hi All, can anybody explain me how to ftp files from local system to unix server using Shell scripting without using any softwares. i have developed some code but its not wrking. lclpath=/dba58/d039/ftppubd/ajay echo $lclpath cd $lclpath user='rajesh' pswd='rajesh' host="3.209.136.253"... (5 Replies)
Discussion started by: rajesh_pola
5 Replies

8. Shell Programming and Scripting

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... (1 Reply)
Discussion started by: steve2216
1 Replies

9. 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
Login or Register to Ask a Question