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?
Others have already mentioned "tail". sed will also work:
sed 1d
As will Awk:
awk 'NR > 1'
tail -n +2 -f -
sed -e 1d < input > output
Stack Overflow is a collaboratively edited question and answer site for programmers – regardless of platform or language. It's 100% free, no registration required.
about » faq »
tagged
asked
1 year ago
viewed
212 times
latest activity