Sponsored Content
Top Forums Shell Programming and Scripting Compare two text files and output difference Post 302691001 by martin0852 on Friday 24th of August 2012 02:40:51 AM
Old 08-24-2012
Hi again don,

Thanks again for your reply and input. I'll have access to the UNIX machine later on so I'll try what you suggested.

But to explain what exactly I am looking for in log1001.txt.

A logbook is kept on tool which is used to document work carried out on the tool. At 0700 and 1900 there is a pass down where the actions from last 12 hours need to be documented.

What I am trying to do is save a copy of the logbook (asml_logbook.txt) at 0700 and then at 1900 compare that to the current logbook(asml_logbook_2.txt) to see if there is anything added (ie any actions performed in last 12 hours). If there is it will be added to the end of the current file and so I want to copy this extra text to the third file, log1001.txt.

I have tried to find out if there is a way to search between two date + time stamps depending on current time but this doesn't seem to be possible.

M

---------- Post updated 08-24-12 at 08:40 AM ---------- Previous update was 08-23-12 at 11:26 PM ----------

Quote:
Originally Posted by Don Cragun
OK. I didn't realize how little experience you have writing scripts. When I saw that you were selecting specific pieces of the output of diff, I assumed you had more knowledge about shell programming than you seem to have.

I went back to your first message in this thread and looked at your script again. The immediate problem is that you are missing a closing quote on the line:
Code:
file2="ASML_LOGBOOK_2.TXT

Therefore, the value you assigned to the file2 variable is:
Code:
"ASML_LOGBOOK_2.TXT

diff ASML_LOGBOOK.TXT ${file2} |grep "

and ending up trying to read input from a file named:
Code:
 " > ${LOG_path}/LOG${toolnr}.TXT

with the name presumably being terminated by a " on a line you didn't show, or by your shell closing the string when it hit the end of file of your script.

If you just copied this code from another thread without understanding what you're doing, I strongly suggest that just replace what you showed us with the command:
Code:
diff ASML_LOGBOOK.TXT ASML_LOGBOOK_2.TXT

to see if the output is what you're expecting. If it is, then change it to:

Code:
diff ASML_LOGBOOK.TXT ASML_LOGBOOK_2.TXT > LOG1001.TXT

If it isn't what you want, read the diff(1) man page to see if there is an option that will give you what you want. If not, explain in detail what you really want in LOG1001.TXT and how that is different from what the diff utility produces by default.

Hi Again Don,

I just added the quote at the end of the file name that I was missing and now it seems to have worked, one small thing though, is there a way to get the output without a "<" at the start of each line?

Thanks,

M.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

to compare two files and to print the difference

suppose one file P1168S P2150L P85L Q597R R1097C Another file P2150L P85L Q597R R1097C R1379C R1587K Then output shud be R1379C R1587K thanks (5 Replies)
Discussion started by: cdfd123
5 Replies

2. UNIX for Dummies Questions & Answers

Compare Files and Output Difference

I have to compare two files for any differences, then output the lab and question number for any differences. This is what I currently have: diff lab2.txt lab2answer.txt > lab2compare.txt Though the output doesn't have to be sent to a .txt (or any sort of log), I found that easier, at least... (2 Replies)
Discussion started by: Joesgrrrl
2 Replies

3. Shell Programming and Scripting

Compare two files and print the two lines with difference

I have two files like this: #FILE 1 ABCD 4322 26485 JMTJ 5311 97248 XMPJ 4321 58978 #FILE 2 ABCD 4321 26485 JMTJ 5311 97248 XMPJ 4321 68978 What to do: Compare the two files and find those lines that doesn't match. And have a new file like this: #FILE 3 "from file 1" ABCD 4322 26485... (11 Replies)
Discussion started by: kingpeejay
11 Replies

4. Shell Programming and Scripting

Compare two columns in two files and print the difference

one file . . importing table employee 119 . . importing table jobs 1 2nd file . . importing table employee 120 . . importing table jobs 1 and would like... (2 Replies)
Discussion started by: jhonnyrip
2 Replies

5. UNIX for Dummies Questions & Answers

compare / difference between sub-sections of files

Hi there, I'm sure this question has been asked many times but I can't find any posts with information. How can I check the differences between say lines 20 - 200 in file1 and lines 420 - 600 in file2? Thanks in advance for any help! js (2 Replies)
Discussion started by: js8765
2 Replies

6. Shell Programming and Scripting

Compare 2 files and output only the different text.

I know the diff does this but it does output more info than just the different text (e.g. $ diff file1 file2 29a30 > /home/alex/Pictures/hello.jpg 1694a1696 > /home/alex/Pictures/hi.jpg ) How can I make it output only /home/alex/Pictures/hello.jpg /home/alex/Pictures/hi.jpg ? thank... (2 Replies)
Discussion started by: hakermania
2 Replies

7. Shell Programming and Scripting

Compare two files and output difference, by first field using awk.

It seems like a common task, but I haven't been able to find the solution. vitallog.txt 1310,John,Hancock 13211,Steven,Mills 122,Jane,Doe 138,Thoms,Doe 1500,Micheal,May vitalinfo.txt 12122,Jane,Thomas 122,Janes,Does 123,Paul,Kite **OUTPUT** vitalfiltered.txt 12122,Jane,Thomas... (2 Replies)
Discussion started by: charles33
2 Replies

8. Shell Programming and Scripting

compare multiple files and get the difference

Hi all, i have 50 files .data should be same in these 50 files , so my task is to find the difference. i need a logic , which finds difference between all files and print in output file with file name where it found that difference . i tried below logic , but its not giving me what i want. let... (2 Replies)
Discussion started by: deepakiniimt
2 Replies

9. Shell Programming and Scripting

Comparing text in 2 files and output difference in another file.

I have 2 files of almost same text apart from 2,3 ending lines. Now I want to get that difference in another file. e.g file1.txt is Filesystem Size Used Avail Use% Mounted on /dev/mapper/vg_livecd-lv_root 18G 2.4G 15G 14% / tmpfs 504M ... (12 Replies)
Discussion started by: kashif.live
12 Replies

10. Shell Programming and Scripting

Script to compare 2 files and prints difference as output sidebyside

Hi All, Am trying script to compare 2 files and print the difference found from old file to new file on line by line basis on side by side display. Basically line by line comparision and files may contain blank line as well I know we have compare/diff commands but i don't how to make... (10 Replies)
Discussion started by: Optimus81
10 Replies
All times are GMT -4. The time now is 04:09 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy