in reply to Re: is this correctin thread is this correct
perl -ne 's/\t/ /g;print' file > file.tmp; mv file.tmp file; [download]
perl -i.back -pe 's/\t/ /g' file
The -i means copy original file to file.back and put the output of program in file. The -p is like -n but does while(<>){YOUR_CODE; print;} instead.