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?
tail -n +2 -f -
Others have already mentioned "tail". sed will also work:
sed 1d
As will Awk:
awk 'NR > 1'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With