Linux之awk命令使用详解

1、awk输出

(1)if判断

cat test.log|awk '{if($1>0 || $2>0) print $0}'

(2)统计行数

awk 'END{print NR}' test.log

你可能感兴趣的:(Shell,Linux)