NF$NFFRFNR举例说明
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NF$NFFRFNR举例说明相关的知识,希望对你有一定的参考价值。
NF当前处理数的个数
[[email protected]_207_144_centos bin]# echo a b c | awk ‘{print NF}‘
3
$NF当前处理数中的最后一位数
[[email protected]_207_144_centos bin]# echo a b c | awk ‘{print $NF}‘
c
FR当前处理行中的所指定的行数
[[email protected]_207_144_centos bin]# curl "http://127.0.0.1/nginxstatus" 2> /dev/null | awk NR==2 | awk ‘{print $3}‘
handled
[[email protected]_207_144_centos bin]# curl "http://127.0.0.1/nginxstatus"
Active connections: 1
server accepts handled requests
148 148 148
Reading: 0 Writing: 1 Waiting: 0
FNR当前处理行的行数
[[email protected]_207_144_centos bin]# curl "http://127.0.0.1/nginxstatus" 2> /dev/null | awk ‘{print FNR}‘
1
2
3
4
[[email protected]_207_144_centos bin]# curl "http://127.0.0.1/nginxstatus" 2> /dev/null | awk NR==2 | awk ‘{print FNR}‘
1
本文出自 “YHT的运维笔记” 博客,请务必保留此出处http://yht1990.blog.51cto.com/9014030/1915188
以上是关于NF$NFFRFNR举例说明的主要内容,如果未能解决你的问题,请参考以下文章