I am trying to compare the decimal numbers in a column one by one. These comparisons are made with respect to constants.
I want to count the number of times the condition is true. But this part is ok.
The file with the data is a csv separated by ";" and the decimals are separated by a "."
I have the following code, but I have not achieved anything.
fixed_acidity_filter=$(awk 'BEGIN{FS=";"} {if($1>0 && $1<15) ]{print}}' winequality-white_sincabecera.csv | wc -l)
Can anyone help me?