Moving decimal point in a series of numbers

Hi,
i need to move the decimal point from a file listing some numbers like this :

49899.50

49914.55

49894.48

49939.65

49879.44

49919.57

49934.62

49944.67

49954.72

49884.46

49949.70

49919.57

49939.65

instead of

49939.65

i should have

49.93965

is there a way to do it?

Thanks in advance and congratulations for the forum as usual.

Divide by 1000 ?

awk 'NF{print $1/1000}' OFMT="%.5f" file
2 Likes