当前位置: 技术问答>linux和unix
awk使用
来源: 互联网 发布时间:2016-12-14
本文导语: 输出$1不包含数字的行 [root@localhost ~]# iostat -d Linux 2.6.18-194.1.AXS3 (localhost) 07/18/2011 Device: tps Blk_read/s Blk_wrtn/s Blk_read Blk_wrtn sda 0.86 6.35 ...
输出$1不包含数字的行
[root@localhost ~]# iostat -d
Linux 2.6.18-194.1.AXS3 (localhost) 07/18/2011
Device: tps Blk_read/s Blk_wrtn/s Blk_read Blk_wrtn
sda 0.86 6.35 93.46 1800456 26491316
sda1 0.00 0.00 0.00 698 0
sda2 0.00 0.00 0.00 934 0
sda3 0.00 0.00 0.00 672 0
sda4 0.00 0.00 0.00 24 0
sda5 0.00 0.00 0.00 664 0
sda6 0.86 6.34 93.46 1796776 26491316
怎么取得sda物理硬盘项
[root@localhost ~]# iostat -d
Linux 2.6.18-194.1.AXS3 (localhost) 07/18/2011
Device: tps Blk_read/s Blk_wrtn/s Blk_read Blk_wrtn
sda 0.86 6.35 93.46 1800456 26491316
sda1 0.00 0.00 0.00 698 0
sda2 0.00 0.00 0.00 934 0
sda3 0.00 0.00 0.00 672 0
sda4 0.00 0.00 0.00 24 0
sda5 0.00 0.00 0.00 664 0
sda6 0.86 6.34 93.46 1796776 26491316
怎么取得sda物理硬盘项
|
iostat -d -k |awk '{if($1 ~/sd/ && length($1)==3) print $1}'
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。