I have a file containing three columns of strings (the last one is a numeric value) I want a code that prints the string in the first column for every line where the third value is above a certain threshold.
My first idea was to open the file and treat the values as an Array with Three scalars, split the scalars and ask perl to print the first one if the third one was larger than my threshold.
I don't know if that is a good way to do it, and anyway I have no idea how to write it.
Could anyone help me solve my problem?