To omit something from file use grep command
Code:
grep -v "word-to-omit" filename
Above command will omit any matching word. To just remove/omit first line use combination of wc and tail -f command:
Code:
tail -n $(wc -l filename | awk '{ print $1-1}') filename