Why this works:
Output=$( tail --lines=1 $fileDiProva ) ##[INFO]Output = \"OK\" if [[ $Output == $OK ]]; then echo \"OK\" else echo \"No Match\" fi
-eq, -lt, -gt is only used for arithmetic value comparison(integers).
-eq
-lt
-gt
== is used for string comparison.
==