Hi all, I need to format a .txt file with tab on every line. I need to know how I can add tab spaces before the line. The same thing that in C works with "\t" .
For example my input file.txt has 3 lines:
ONE
TWO
THREE
I need this output on the same file (with tab spaces, not with underscore :o) ):
______ONE
______TWO
______THREE
Thanks!
Bye
For example my input file.txt has 3 lines:
ONE
TWO
THREE
I need this output on the same file (with tab spaces, not with underscore :o) ):
______ONE
______TWO
______THREE
Thanks!
Bye
Comment