Removing first line from stdin and redirect to stdout Removing first line from stdin and redirect to stdout unix unix

Removing first line from stdin and redirect to stdout


Others have already mentioned "tail". sed will also work:

sed 1d

As will Awk:

awk 'NR > 1'


sed -e 1d < input > output