# # This little program will change your tabs to 4 spaces. To run it: # $ perl fixtabs.pl < > # and the fixed file will be . Try not to use the same file name for both and # while () { s/\t/ /gi; print $_; }