updates only


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting updates only
# 1  
Old 01-27-2009
updates only

Hi,
I have a file called Data-today.Txt that is updated every 5 minutes.

# cat '/root/Desktop/window/'`date +%b%Y`'/Data-'`date +%d%m%y`'.Txt' > /root/temp.txt

I want to read it every hour and findout the changes and process only those lines added since the last check.
I tried diff but did not get what I want.

At 9:56 A. M. the file looked:
This is line one
This is line two

At 10:00 A. M. I processed these two lines.


At 10:05 A. M. the original file will look like:
This is line one
This is line two
This is line three

at 11:00 A. M. I want to process only the newly added line i.e.
This is line three

Any help will be appreciated.

Regards,
Shantanu Oak
# 2  
Old 02-03-2009
Can the file change anywhere? Or can lines only be added to it? If lines can only be added to it, just keep track of the last line number:
Code:
wc -l <filename> >/root/lastcheck-line.dat

Then a while later, do:
Code:
read L </root/lastcheck-line.dat
awk "NR==$L,0" <filename>  >/root/temp.txt

Once you're done, you can print the length again. You can do it altogether this way:
Code:
L=1; test -s /root/lastcheck-line.dat && read L </root/lastcheck-line.dat
awk "NR==$L,0 { print } END { print NR >'/root/lastcheck-line.dat' }" <filename>  >/root/temp.txt

Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. HP-UX

Software updates?

On Hp-ux,I'm not talking about security patches.But free products like SecureShell. How to know if update is avaliable?On Solaris11 is possible using pkg update. On hpux?Some tool to check for outdated products and tell if new version is avaliable? ---------- Post updated at 03:24 AM... (1 Reply)
Discussion started by: Linusolaradm1
1 Replies

2. Shell Programming and Scripting

Cron updates

This cmd will update the user's crontab with the quoted line. But how to script the update using a previously stored variable? crontab -l | awk '{print} END {print "* * * * * echo test >> /tmp/testing"}' | crontab crontab -l | awk '{print} END {print "$storedvariable"}' | crontab Does not... (3 Replies)
Discussion started by: gtsonoma
3 Replies

3. Fedora

Installing updates

Hi, Im using Fedora version 23 (latest upgrade and upates). Currently to receive the updates, I use: su -c 'yum update' This works fine, but I get: yum command has been deprecated, redirecting to '/usr/bin/dnf update'. See 'man dnf' and 'man yum2dnf' for more information. To... (1 Reply)
Discussion started by: Janning
1 Replies

4. UNIX for Dummies Questions & Answers

CentOS updates

hello all I Installed CenTOS 5.5 and i've Run yum update command every thing went smoothly but i got the following error at the end 6:kdebase-3.5.4-21.el5.centos.1.i386: Insufficient space in download directory /var/cache/yum/updates/packages * free 6.0 M * needed 28 M ... (2 Replies)
Discussion started by: abu_shiahb
2 Replies

5. Red Hat

RedHat Updates

All, I'm updating my redhat servers by directly connecting to internet (redhat network). After I connecting to the internet, I see some packages in package updater.I'm trying to do update but its stucking up when it is starting updating the server. Any ideas. Thanks (4 Replies)
Discussion started by: s_linux
4 Replies

6. UNIX for Advanced & Expert Users

multiple updates

Hi all, I would like to perform multiple updates within a single database open and close. Box: solaris dB: informix This is how i do perform for single update dbaccess <dbname> -<<EOF update table1 set col1=1 where col2=1 EOF i have the col1 values in a file (some 1000 values)... (1 Reply)
Discussion started by: matrixmadhan
1 Replies

7. AIX

unix updates- Where can I find unix updates online for IBM servers?

I have a Unix based server running Sagitta and the server is giving me an error of 4b10004 and my research tells me this is an EPROM issue, which means the processor needs to be flashed or repaired. Once up and running where can I go to get updates for Unix? (1 Reply)
Discussion started by: crainer
1 Replies
Login or Register to Ask a Question