标签: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}‘
本文出自 “未来时空” 博客,请务必保留此出处http://sjitwant.blog.51cto.com/3661219/1971428
标签:shell
原文地址:http://sjitwant.blog.51cto.com/3661219/1971428