This must be easy for you
Here is file1 (one column)
1
2
3
4
5
6
7
8
9
and here is file2 (two columns)
2 yay
3 ups
4 wow
8 hey
There must be a simple one liner to print out lines in file1 that don“t match to file2
or using join with -v, as @Michael suggested:
both will print :
|
|||||||
|
|
You can do this by combining
You might also consider |
||||
|
|
|
This sed solution might work for you:
Explanation: Sort the files numerically then using |
|||
|
|
joinandcommsolutions require the input files to be sorted, which they happen to be in this question. Theawksolution does not care if not sorted. – glenn jackman Nov 18 '11 at 16:40