how to compare two columns in a single file in unix
Compare columns in your awk command:
awk -F'"' '$8!=$12 {print $8,"=",$12}'
This should work for you (trail this to your current line) :
... | awk -F'=' '$1!=$2'
Compare columns in your awk command:
awk -F'"' '$8!=$12 {print $8,"=",$12}'
This should work for you (trail this to your current line) :
... | awk -F'=' '$1!=$2'