Search results

  1. L

    Multiplying the decimals in the column

    Your decimal separator seems inconsistent between input and output Try changing LC_NUMERIC to reflect input locale LC_NUMERIC=en_US.UTF-8 awk --use-lc-numeric '{$2=$2*27.211396132 ; print }' input file > output file
Top