Shell Script for deleting the first line in a file

Hi,

Could any one please post the shell script for deleting the first line in a file?

sed -e '1d' filename > new_filename_without_the_first_line
printf '1d\n.\nwq!\n' | ex myFile

sed -i '1d' filename

---------- Post updated at 08:56 PM ---------- Previous update was at 08:55 PM ----------

sed -i '1d' filename