Let's say I have "File 1" with content as below:
123|abc|def|
456|ghi|jkl|
789|mno|pqr|
And I have "File 2" with content as below:
123|abc|def|
456|ghi|jkl|
789|mno|pqr|
134|rst|uvw|
As you can see "134" does not exist on File 1, therefore, my shell script should create a File 3, that contains as follows.
134|rst|uvw|
How can I achieve this?