This would merge the files data1.txtand data2.txtfile merged.txt, skipping the first line of data2.txt. It uses awk if you are ok:
(cat data1.txt; awk 'NR>1' data2.txt) > merged.txt
awk adds all lines with line number> 1 from file data2.txtto file merged.txt.
NR - awk, . NR > 1 , awk .
data1.txt , ( ) :
awk 'NR>1' data2.txt >> data1.txt