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
cut -c6-
This prints each line of the input starting at column 6 (the first column is 1).
2.1m questions
2.1m answers
60 comments
57.0k users