shell提取数字

前端之家收集整理的这篇文章主要介绍了shell提取数字前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

样本

/opt/abc/efg_hello_211/world/world

/opt/abc/efg-hello-2112/world/world


方法一.cat test.txt |grep "server"|awk -F'/' '{print $4}'|grep -o '[0-9]\{3,\}'

方法二.cat test.txt |grep "server"|awk -F'/' '{print $4}'|awk -F '-|_' '{print $3}'

原文链接:https://www.f2er.com/bash/390189.html

猜你在找的Bash相关文章