I'm trying to find a way to replace commas , with a tabbed space \t or, in fact, it can be a single space as well. I would like to do this using BASH, and I was wondering perhaps Vim can accomplish such tasks?
I know I can do this manually or through command line for one file with:
vi [file] -c :%s/\,/\t/g
Would it be possible to do this on a loop of files, such as:
for i in *; do [vi command here]; done
Thanks for your help
ex. – Amit Apr 13 '11 at 13:50