cat yop2.sql | sed -e "s/\([0-9]\),\([0-9]\)/\1.\2/g" > yop3.sql
To turn commas into dots on numbers like "343,123" I have the previuos sed statement. Thanks sed!
To turn commas into dots on numbers like "343,123" I have the previuos sed statement. Thanks sed!