Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 awk 命令计算文件中第 4 个字段大于第一个字段的行数我想出了这个命令:
awk '$4>$1 {print}' sampleFile | wc -l
有没有更好的方法来查找数字而不是使用wc -l
wc -l
一种使用方式GNU awk:
GNU awk
awk '$4 > $1 { count++ } END { print count }' file.txt