/ Published in: Bash
URL: http://stackoverflow.com/questions/5641378/replace-commas-with-a-tabbed-space-in-many-files
Expand |
Embed | Plain Text
for i in * do cat $i | tr ',' '\t' > $i.tmp mv $i.tmp $i done
You need to login to post a comment.
