I need a one-liner to remove the first five characters on any line of a text file. How can I do that with sed?
Use cut:
cut -c6-
This prints each line of the input starting at column 6 (the first column is 1).