/ Published in: Perl
This Perl one-liner will remove all newline characters from a text file, replacing them with a space. In the source, all newline characters in the file gear_list.xml are replaced with spaces, and the original file is saved as gear_list.xml.bak
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$ perl -i.bak -pe 'chomp; print " ";' gear_list.xml
URL: http://forums.macosxhints.com/showpost.php?s=5db608600334b1707729f707eed4c7ca&p=459362&postcount=3