Easy, with GNU tail to the rescue:
tail -n +X file.txtWhere -n prints the last lines, but the + inverts this and starts from the top of the file.
So tail -n +2 file.txt will print the whole file, minus its first line.
Using +1 would just print the whole file unchanged.