Hi All,
i have a file test.txt as shown below,
1,test,test111
2,rest,rest222
i want to replace the commas by tab delimiter..,
it should be like,
1 test test111
2 rest rest222
i tried the following code,
Code:
sed 's/,/\\t/g' test.txt >> ouptut.txt
But, that dint work..,
Could any one help?
Thanks