/ Published in: Bash
                    
                                        
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
for i in *
do
cat $i | tr ',' '\t' > $i.tmp
mv $i.tmp $i
done
URL: http://stackoverflow.com/questions/5641378/replace-commas-with-a-tabbed-space-in-many-files
Comments
 Subscribe to comments
                    Subscribe to comments
                
                