Results 1 to 2 of 2
Ive been trying to use sed to change an output file from a model im working with. The model outputs some data to a text file and for some reason, ...
- 12-14-2005 #1Just Joined!
- Join Date
- Dec 2005
- Posts
- 4
help with sed
Ive been trying to use sed to change an output file from a model im working with. The model outputs some data to a text file and for some reason, outputs zero as .0000 , which gives me a probelem with my graphics package (it needs to be 0.0000). Ive tried using sed with the command :
sed 's/ .0/0.0/g'
but it doesnt properly work. It changes 0.* to 0.0.* as well! Is there something im missing? Is there a proper way of specifying blank spaces?
Thanks in advance
- 12-14-2005 #2
you need to escape the first '.', other wise it matches "any character"
[edit]please, don't crosspost.[/edit]Code:sed 's/ \.0/0.0/g'
Regards Scienitca (registered user #335819 - http://counter.li.org )
--
A master is nothing more than a student who knows something of which he can teach to other students.


Reply With Quote