linux中欄位截取、替換等awk及sub/gsub使用__linux

來源:互聯網
上載者:User

gsub函數則使得在所有Regex被匹配的時候都發生替換

gsub(regular expression, subsitution string, target string);簡稱 gsub(r,s,t)

sub匹配第一次出現的符合模式的字串,相當於 sed ‘s//’ 。
gsub匹配所有的符合模式的字串,相當於 sed ‘s//g’

執行個體一
將|分割第二個域中的數字去掉
echo “0001|20081223efskjfdj|EREADFASDLKJCV” |awk -F ‘|’ ‘BEGIN{ OFS=”|” } {gsub(/[0-9]+/,”“, 2);print 2);print 0}’
0001|efskjfdj|EREADFASDLKJCV

執行個體二
/分割,取出snapshots後面知道倒數第四個之間的域(其中/的數不確定,所以不大方便直接使用awk 6, 6,7,$8來直接取,使用欄位截取),.隔開 com.netfinworks.authorize
樣本

/Users/yfan/Downloads/dsc20170801_jar/snapshots/com/netfinworks/authorize/authorize-service/1.0.0-SNAPSHOT/authorize-service-1.0.0-SNAPSHOT.jar

先設定一個變數

yfandeMacBook-Pro:pbs yfan$ test=/Users/yfan/Downloads/dsc20170801_jar/snapshots/com/netfinworks/authorize/authorize-service/1.0.0-SNAPSHOT/authorize-service-1.0.0-SNAPSHOT.jar

用Linux中的符號截斷(##)去掉com前面的部分

yfandeMacBook-Pro:pbs yfan$ echo ${test##*snapshots/}

結果

com/netfinworks/authorize/authorize-service/1.0.0-SNAPSHOT/authorize-service-1.0.0-SNAPSHOT.jar

在用awk結合gsub去掉後面的部分(倒數第一、第二、第三域)

yfandeMacBook-Pro:pbs yfan$ echo ${test##*snapshots/}|awk -F'/' '{gsub("/"$(NF-2)"/"$(NF-1)"/"$NF,"");print}'

結果

com/netfinworks/authorize

最後再用sed用.替換/,完成目標

yfandeMacBook-Pro:pbs yfan$ echo ${test##*snapshots/}|awk -F'/' '{gsub("/"$(NF-2)"/"$(NF-1)"/"$NF,"");print}'|sed  's/\//./g'

結果

com.netfinworks.authorize

gsub說明參考:
http://blog.sina.com.cn/s/blog_67e34ceb0100ybvg.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.