Summary: Kindly please assit me to compare two files in perl or any other script: I have two files: File1.abc start prog name cadillac ggg abc ttt fff start p...
Summary: Hi, compare two files and difference will be moved into separate file.if anybody having code for this please send asap. using diff command how can w...
Summary: Hi experts, I need to compare two files and get the difference between the two files. F1 is the base file.I need to print out all the lines missing in...
Summary: Hi All, I have two files file1: abc,def,ghi,5,jkl,mno pqr,stu,ghi,10,vwx,xyz cba,ust,ihg,4,cdu,oqw file2: ravi,def,kishore ramu,ust,krishna joseph,stu...
Summary: I am comparing two files fine using diff as follows and manipulating the results: diff FileA FileB | sort -u > result How do I do the same for a sets...
Summary: Hi, I need to compare two files using shell script. (file1: inbound/data/lockbox & file2:inbound/data/lockbox/archive) If they are same it should em...
Summary: hi, i need to compare two files and get the line that is common.i tried it using comm command but it doesnt work.the problem is say my file a.txt is a...
Summary: Can anyone help me with shell script to this problem. I have two files as shown below. I want to loop through the two files by comparing column1, row...
Summary: Perl Expert please assist: This not a hw assignment, this a research work. I have started it have some code in place, I need your help. Need to compa...
Summary: I need to compare two report names, that is, two strings. When I tried to use the following expression: if (( $word1 -eq $rptname )) or if [[ $word1...
Summary: I need to compare too files in two different directories if the one on DIR1 is newer then the one of DIR2 then I need to move it to DIR2. E.I check if...
Summary: Hi All, I've seen many questions/answers about combining or merging two files using awk but I can't quite get them to work for my situation. It's poss...
Summary: I need to compare two files and get the difference between the two files. F1 is the base file.I need to print out all the lines missing in F2, and the...
Summary: How to compare substring of col1,file 1 with col2file2 and get file1contents+col3file2 as output. file1 ----- kumarfghh,23,12000,5000 rajakumar,24,140...
Summary: Hello all I hope someone can help! It would be much appreciated! What I need to do is compare a load of numbers in file1 to a load of numbers in file2...
Summary: Hi All, I have two files. cat numbers.csv 9999500123,A,B,CFGGH 01199234984,S,D,CFGde 0023445875554,sddf,fhh,wwr cat prefix.csv 9999,jpr,3.12,60 01199...
Summary: Hi, I have four files three in the following format col1row1, col2row1, col3row1 col1row2, col2row2,col3row2 col1row3, col2row3,col3row3 and the fourt...
Summary: hie there, i would like to know how do i compare files in a current directory? i don't want to compare just 2 files with the diff filename1 fil...
Summary: Would you like to compare a text files or a binary files? - If these files are text files, you have to write a simple script using a "diff" UNIX comma...
Summary: Hey, I need helping writing a KORN shell script that will search my directories for minimum two files to pass back to the script as arguments. I am ...