I am using awk to check if my data has values of 32th column is greater than 4000 and value of 60th column is less than 10. I am using below command, but it is not working, nor it is showing any error:
awk -F, '$32 > 4000' && '$60 < 10' *
I have , as separator and I am checking it in all the files in a folder.