Print starting 3rd line until end of the file.

Hi,

I want to Print starting 3rd line until end of the file. Pls let me know the command.

Thanks in advance.

Some possibilities:

sed '1,2d' file

or:

awk 'NR>2' file

Regards