Delete the first five characters on any line of a text file in Linux with sed January 24, 2023 by Tarik Use cut: cut -c6- This prints each line of the input starting at column 6 (the first column is 1).