Compare files excluding certain lines.
Quick tip, you can use any expression for the sed commands in the (). With this trick you can redirect the stdout of 2 commands to the diff command. This might become very useful, if you want to compare 2 files, excluding the first line.
diff <(sed '1d' file) <(sed '1d' file2)
More interesting example is where the string ABC is converted to abc before comparing in the second file with the following command:
diff file <(sed 's/ABC/abc/g' file2)
Related Articles:
- 2011/10/05 Get yourself some conkyrc files.
- 2010/05/16 Downloading all related videos from youtube with youtube-dl
- 2010/03/16 prepend to a file with sponge from moreutils
- 2011/10/12 Cont: Get yourself some more conkyrc files.
- 2011/10/08 Script to get yourself some conkyrc files
Authored By Amit Agarwal
Amit Agarwal, Linux and Photography are my hobbies.Creative Commons Attribution 4.0 International License.