How to change number format (different decimal separator) from XXXXXX.XXX to XXXXXX,XXX using sed or awk?
XXXXXX.XXX
XXXXXX,XXX
sed
awk
Since the question is also tagged awk:
awk 'gsub(/\./,",")||1'