cara menghapus baris pertama dari output menggunakan awk
sed -n '1!p'
or
awk '{if(NR>1)print}'
devops unicorn
sed -n '1!p'
or
awk '{if(NR>1)print}'