The following lines append the content of essay_i.txt to the end of essay1.txt:
touch essay1.txt
for (( i = 1 ; i <= 10 ; i++ )); do
sed '2p' essay_"${i}".txt >> essay1.txt
done
How should I change it so that the first line of each of essay_i.txt are not copied (i.e. only copy line 2->end) ?