Perhaps you could write a script including a sleep 1800 (ie 30 x 60 seconds) command to 'wake up' and delete the file 30 minutes after it is created. How is the file created and could this sleep be included within the creation script so that essentially it self-destructs after 30 mins? Something like:
*********Script to create the text file**********
sleep 1800
if [ -f alarm_sms.txt ]
then
rm alarm_sms.txt
fi
*********Loop back to top to recreate*************
Also, when I write to this file during the 30 minutes, can I preserve the file date? I want to avoid writing to the file, it updating the time it was written to, because I would never delete it if it kept updating the time stamp.
Basically, I want to write to the file for 30 minutes and delete it after that.
Beaster, unfortunately, the -atime option in find uses days as it's criterion, not minutes. As far as I know, there isn't an option in find to specify minutes elapsed. HTH.
If my perception of what you're trying to do here is correct, you're anxious that the file doesn't grow too large? If that's the case, you could set up a cron script to tun every half hour to trim the file to the last few entries. For example:
Sound's like Ken's idea is the best one, with the possible addition of a check to see if the process that writes to the file is still running when the sleep times-out & do a "kill" on it if it is.
I run commands to a node and pull all the alarms out and redirect to a file. > alarm_sms.txt
I then send to a paging system.
If I have already sent this alarm, I do not want to see it again for 30 minutes (Annoying at 2:30 in the am)
So pull alarms, redirect them to alarm_sms.txt, cat alarm_sms.txt > sms.txt and ftp it over to another node to be sent out.
Next time the script runs 10 minutes later, if it see's that there are alarms in alarm_sms.txt, (using fgrep) it won't put it in the sms.txt file before it sends it.
Then after 30 minutes, it starts all over.
Sorry for being stupid and not explaining what I am actually doing the first few times.
Still a little confused, but would it be possible to compare the number of lines in the file each time it is examined, and if it has changed, to send only those added since the previous examination. Sorry - thinking aloud as I have to be elsewhere now! Hope you get this sorted - I'll check in the morning.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.