I´d like to compare two files, but I don´t want to take into account the first 10 lines, and the last 3 lines of both files. I tried to do it with diff and tail commands, like in here, but without success. how can I do it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use GNU To ignore the first 10 lines of a file, use
To ignore the last 3 lines of a file, use
You can then construct your
|
|||
|
|
