vote up 2 vote down star

i need to redirect all of the stdout of a program except the first line into a file.

Is there a common unix program that removes lines from stdin and spits the rest out to stdout?

flag

33% accept rate

3 Answers

vote up 4 vote down check

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

sed 1d

As will Awk:

awk 'NR > 1'
link|flag
vote up 3 vote down

tail -n +2 -f -

link|flag
vote up 0 vote down

sed -e 1d < input > output

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.