Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

how to remove first line from output using awk

sed -n '1!p'

or

awk '{if(NR>1)print}'
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #remove #line #output #awk
ADD COMMENT
Topic
Name
8+7 =