On 06/09/2010 05:27 AM, hiral wrote:
On Jun 6, 7:27 am, Steve<vvw...@googlemail.com>  wrote:
On 5 June, 08:53, Steve<vvw...@googlemail.com>  wrote:
Remove all comma's
Replace all @ with comma's
Save as a new file.

Many thanks for your suggestions.

sed -i 's/Hello/hello/g' file

Run twice on the CL..with the hello's changed for my needs did it in a
few minutes ,

You can do...

sed "s/,//g"<your_file>  | sed "s/@/,/g">  <new_file>

No need to use 2 sed processes:

  sed 's/,//g;y/@/,/' your_file > new_file

(you could use "s/@/,/g" as well, but the internal implementation of the transliterate "y" should be a lot faster)

-tkc



--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to