I have 2 nix files. All of the data is on one single line in each file. Each value is separated by a null character. Some off the values in the data match.

How would I parse this data into a new file listing only the matching values ?

I figure I could use sed to change the null characters into newlines ? From there on I'm not real sure...

Any ideas ?

link|improve this question

4  
Are there duplicate values within a single file? Some sample data would help. – John Zwinck Jan 4 at 4:46
1  
would positioning make any difference, or are you just looking for matching existence at any point in the file? as @JohnZwinck said, sample data would help. – Radix Jan 4 at 5:00
The positioning makes no difference, there may be duplicate values. – Bat Masterson Jan 4 at 5:33
1  
awk is an ideal tool for this situation. If you can share some sample data then it would be helpful. – Jaypal Singh Jan 4 at 7:42
feedback

3 Answers

up vote 9 down vote accepted

Use tr, sort and comm:

Convert nulls into new lines, and sort the result:

$ tr '\000' '\n' < file1 | sort > file1.txt
$ tr '\000' '\n' < file2 | sort > file2.txt

then use comm to get the lines that are common to both file:

$ comm -1 -2 file1.txt file2.txt
<lines shown here are the common lines between file1.txt and file2.txt>
link|improve this answer
feedback

If there are no duplicate values within file1 or file2, you can do this:

( tr '\0' '\n' < file1; tr '\0' '\n' < file2 ) | sort | uniq -c | egrep -v '^ +1'

This will count all of the duplicate values between the two files.

If the order of the fields is important, you can do this:

comm -1 -2 <(tr '\0' '\n' < file1) <(tr '\0' '\n' < file2)

This approach is not portable, it requires the 'process substitution' feature of Bash.

link|improve this answer
feedback

This might work for you:

parallel 'tr "\000" "\n" <{} | sort -u' ::: file{1,2} | sort | uniq -d
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.