Using the awk command, you can do many useful things, one of which is printing only what you want. If for example, you only wanted to print everything except for the first line, you could do this:
awk ‘NR>1’ /path/to/my/file
Using the awk command, you can do many useful things, one of which is printing only what you want. If for example, you only wanted to print everything except for the first line, you could do this:
awk ‘NR>1’ /path/to/my/file