I have a program that displays many line in the output
How I can make it display the all output except the first 2 lines?
easily using tail command:
tail -n+3
You could use awk
awk
awk 'NR>2' file
In order to complete the triplet,
sed '1,2d' file