Linux command to change xx.xx into xx,xx (for currency) -


i live in holland , currency stated komma (,) instead of dot (.) i.e.feeds 14.95 interpreted number instead of 14,95 in euros

is there linux command (sed?) can solve problem? 14.95 changed 14,95

i've tried replace dot komma feed has number of correct dot's replaced

this sed command replaces '.' between digits comma (komma)

sed 's/\([0-9][0-9]*\)\.\([0-9][0-9]*\)/\1,\2/' 

Comments