Skip to content

Instrukcje warunkowe

Example 1

#!/usr/bin/awk -f

{
   if($2==$3) {

   } else {
      print $0
   }    
}