/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
for f in * ; do sed -i -e 's/,/t/g' $f ; done # alternately: # sed -i -e 's/,/\t/g' *
URL: http://stackoverflow.com/questions/5641378/replace-commas-with-a-tabbed-space-in-many-files