Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use awk to split strings in shell

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces how to use awk to split strings in shell. The content is very detailed. Interested friends can use it for reference. I hope it will be helpful to you.

For example, a string is: hua nong jing chao. I want to separate the secondary string with spaces as delimiters and assign the segmented string to four variables var1,var2,var3,var4

The methods are as follows:

Var1= `echo "hua nong jing chao" | awk-F'{print $1}'`

Echo $var1

Var2= `echo "hua nong jing chao" | awk-F'{print $2}'`

Echo $var2

Var3= `echo "hua nong jing chao" | awk-F'{print $3}'`

Echo $var3

Var4= `echo "hua nong jing chao" | awk-F'{print $4}'`

Echo $var4

Note: if you want to use other characters as delimiters, you can replace-F with the corresponding split payment, and then split it.

On shell how to use awk to split strings to share here, I hope the above content can be of some help to you, you can learn more knowledge. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report