Как удалить первую линию с вывода с помощью AWK
sed -n '1!p'
or
awk '{if(NR>1)print}'
devops unicorn
sed -n '1!p'
or
awk '{if(NR>1)print}'