I\'m trying to delete the first two lines of a file by just not printing it to another file. I\'m not looking for something fancy. Here\'s my (failed) attempt at awk:
How about:
tail +3 file
OR
awk 'NR>2' file
sed '1,2d' file