taking snapshot of a file


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers taking snapshot of a file
# 1  
Old 09-09-2005
taking snapshot of a file

Hi

I would like to take snapshots or look at a file every few secs that its not being edited or not being made any changes. After a minute, if there were no changes, then I would like to call my application job.

Looking for command that does this. No success in googling it.

the test command just checks for the file existence, but i want to check for file changes before it can be read
# 2  
Old 09-09-2005
A random thought ... you may be able to run the file periodically through 'md5sum' to compute the checksum, remember it, and compare it with the next computation to check if the content of the file has been tampered with.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Search pattern in a file taking input from another file

Hi, Below is my requirement File1: svasjsdhvassdvasdhhgvasddhvasdhasdjhvasdjsahvasdjvdasjdvvsadjhv vdjvsdjasvdasdjbasdjbasdjhasbdasjhdbjheasbdasjdsajhbjasbjasbhddjb svfsdhgvfdshgvfsdhfvsdadhfvsajhvasjdhvsajhdvsadjvhasjhdvjhsadjahs File2: sdh hgv I need a command such that... (8 Replies)
Discussion started by: imrandec85
8 Replies

2. Shell Programming and Scripting

Replace from taking from file

Hi, I have one file. S_CHAR.cfg. Content given below. \" abcd1234 \| abcd1235 \$ abcd1236 So it has two record per line delimited by space. No I am looking for some help on how to replace this special charaters ( mentioned in record 1 of each line) with the values mentioned in... (7 Replies)
Discussion started by: Anupam_Halder
7 Replies

3. UNIX for Dummies Questions & Answers

Taking word count from file and printing in file

hi, i am having a file which contains the below content, i need to take the word count of if and print the file name also inputfile.txt file_name1.txt,type_name1.txt file_name2.txt,type_name2.txt i would need the word count of the files like this if file_name*.txt then wc -l... (10 Replies)
Discussion started by: rohit_shinez
10 Replies

4. Shell Programming and Scripting

Installing a bin file by taking input from a properties file

I need to install a bin file in UNIX which requires user interaction for giving some information like user id , path, sid etc. All these information is stored in a properties file in the same location. So if i give ./file.bin -f propfile.properties will it install the file taking all the... (1 Reply)
Discussion started by: coolmohere
1 Replies

5. Shell Programming and Scripting

How to ftp multiple files by taking the file name from a input file.

Hi, I'm working on a script which has to copy multiple files from one server to another server. The list of files that are to be copied is present in a file say input.txt. vi input.txt abc.c welcome.c new.c welcome1.c for ftp'ing a single file say 'new.c' the following code... (2 Replies)
Discussion started by: i.srini89
2 Replies

6. Shell Programming and Scripting

Taking a particular attribute's value in a file...

HI, Iam new to scripting..I need some guidance for invoking the following logic.. My input file contains Event Time = Thu, Nov 6, 2008 08:41:56 AM Probable Cause = UnspecifiedReason Specific Problems = BTS down due to Tx ... (16 Replies)
Discussion started by: Llb
16 Replies

7. Shell Programming and Scripting

taking a part from file name

hi i have a file with name "CT_Thread_Trace.384.20080728-121217.log" i need 384 , can any one help thanks Satya (5 Replies)
Discussion started by: Satyak
5 Replies

8. UNIX for Dummies Questions & Answers

Please help me in taking the values from a file

i have a script, whcih takes values from a file and assign it to one variable. this text value contains name of few object. value contains line by lie. i.e. one after another. when i am assaign the value of this text file to a variable, it accept the value as one liner instead of one by one.... (3 Replies)
Discussion started by: jin
3 Replies

9. UNIX for Dummies Questions & Answers

Taking a snapshot / view of a server

I'm about to run an application patch on a server and before I do I would like to take a snapshot of the OS. Then after running the install I can take another one for a comparison. The idea being that if the patch changes any files outside of the /app directory then I will know from comparing... (2 Replies)
Discussion started by: Yao
2 Replies
Login or Register to Ask a Question