I have a data file consists of rows with numeric data. The example of numeric data is 4053.45677771. When I perform arithmetic operation with nawk like;
nawk -F, '{print $1*1000}' data > data_2
numeric values in data_2 file looks with exponential and precision is lost like; 4.05346e+06
How can I multiply with 1000 without exponential usage and precision lost?