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).
1.4m articles
1.4m replys
5 comments
57.0k users