in reply to Remove row if the absolute difference between two columns is greater than a threshold
This should do it. See perlrun for the details:
perl -anle"$F[1]==$F[2] and print" infile > outfile [download]