Answers for "how to remove first line from output using awk"

0

how to remove first line from output using awk

sed -n '1!p'

or

awk '{if(NR>1)print}'
Posted by: Guest on January-31-2021

Code answers related to "how to remove first line from output using awk"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language