I have a sample file in the below format
Name Description Value
ram ABC 0
sri DEF 0
arjun DEF 5
If the 3rd column $3 contains a value other than 0, need to generate an email.
I can pick the contents of column 3 using awk '{print $3}' file_name.
Need someone to help me beyond this.
$3is not zero inawk?