#To remove the first record in the original file
sed -i '1d' FF_EMP.txt
#To create a new file with header removed
sed '1d' FF_EMP.txt > FF_EMP_NEW.txt
#To remove the last record in the original file
sed -i '$d' FF_EMP.txt
#To create a new file with trailer removed
sed '$d' FF_EMP.txt > FF_EMP_NEW.txt
#To remove the header & footer
sed -i '1d;$d' FF_EMP.txt
#To create a new file with header & trailer removed
sed '1d;$d' FF_EMP.txt > FF_EMP_NEW.txt