当前位置: 技术问答>linux和unix
脚本如何在字符串中提取数字
来源: 互联网 发布时间:2016-12-14
本文导语: 比如在文本中有如下的字符串: information the value is 7000MB, you must ensure that the disk is enough the disk is 8000MB 我想把里面的7000MB提取出来,并赋值给一个整数,请高手指点下,谢谢 | 要...
比如在文本中有如下的字符串:
information
the value is 7000MB, you must ensure that the disk is enough
the disk is 8000MB
我想把里面的7000MB提取出来,并赋值给一个整数,请高手指点下,谢谢
information
the value is 7000MB, you must ensure that the disk is enough
the disk is 8000MB
我想把里面的7000MB提取出来,并赋值给一个整数,请高手指点下,谢谢
|
要不试试这个:
awk '{if($0 ~//dev/sdb/ && $6 ~/bytes/) print $5}' yourfile
awk '{if($0 ~//dev/sdb/ && $6 ~/bytes/) print $5}' yourfile