I have two text files containing multiple lines of text from a datalogger, and I need to compare the two files and save the difference into a third text file.
ie....
text1:
10/13/01, 21:34:23, 4324
10/14/01, 09:12:32, 3423
10/15/01, 04:45:54, 7834
text2:
10/12/01, 43:34:34, 6453
10/13/01, 21:34:23, 4324
10/14/01, 09:12:32, 3423
10/15/01, 04:45:54, 7834
10/16/01, 05:34:26, 8323
text3:
10/12/01, 43:34:34, 6453
10/16/01, 05:34:26, 8323
I am able to accomplish this using a bash script, but since the rest of my code is in the python I would rather stick to using just python. Any advice would be great!
Thanks