I have a text file where I want to remove the first 6 characters of every line. The characters are whitespace and some numbers. They are ascii characters. How can this be done? I have a windows environment.
Example file:
54863 important text line 1
14247 important text line 2
29751 important text line 3
Example result:
important text line 1
important text line 2
important text line 3