I have a huge csv file with 500.000+ lines. I want to add an amount to the "Price" column via the terminal in Ubuntu. I tried using awk (best solution?) but I don't know how. (I also need to keep the header in the new file)
Here is an example of the file
"Productno.";"Description";"Price";"Stock";"Brand" "/5PL0006";"Drum Unit";"379,29";"10";"Kyocera" "00096103";"Main pcb HUK, OP6w";"882,00";"0";"OKI" "000J";"Drum, 7033/7040 200.000";"4306,00";"0";"Minolta" I want to for example, add 125 to the price so the output is:
"Productno.";"Description";"Price";"Stock";"Brand" "/5PL0006";"Drum Unit";"504,29";"10";"Kyocera" "00096103";"Main pcb HUK, OP6w";"1007,00";"0";"OKI" "000J";"Drum, 7033/7040 200.000";"4431,00";"0";"Minolta"