If you have a large file and you want to replace TAB with a comma or a new Text. Please use the below command from a Linux Bash Shell
sed 's/t/NEWTEXT/g' inputfile.txt > outfile.txt
Eg: Replace TAB to Comma
sed 's/t/,/g' inputfile.txt > outfile.txt