Jak usunąć pierwszą linię z wyjścia za pomocą AWK
sed -n '1!p'
or
awk '{if(NR>1)print}'
devops unicorn
sed -n '1!p'
or
awk '{if(NR>1)print}'