2012-10-09 17 views

Respuesta

13

Una forma usando GNU awk:

awk '$4 > $1 { count++ } END { print count }' file.txt 
+2

+1: cualquier awk, incluso (antiguo) Wil awk l procesar su código altamente portátil. Buena suerte a todos. – shellter

Cuestiones relacionadas