awk '$4>$1 {print}' sampleFile | wc -l
有没有更好的方法来找到数字而不是使用wc -l
awk '$4 > $1 { count++ } END { print count }' file.txt