END表示在结束操作文件之后执行指定的action,这通常是为了添加表尾。
END
action
示例:
echo "a b c\nd e f g" | awk 'END {print "-"} {print NF}'
运行效果如下: