In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/01 Report--
Editor to share with you how to use shell awk process control statements in linux, I believe most people do not know much about it, so share this article for your reference, I hope you can learn a lot after reading this article, let's go to know it!
one。 Conditional judgment statement (if)
The code is as follows:
If (expression) # if (Variable in Array)
Statement 1
Else
Statement 2
In the format, "statement 1" can be multiple statements, and if you want to make it easier for Unix awk to judge and facilitate your own reading, you'd better enclose multiple statements in {}. The Unix awk branching structure allows nesting in the following format:
The code is as follows:
If (expression)
{statement 1}
Else if (expression)
{statement 2}
Else
{statement 3}
The code is as follows:
[chengmo@localhost nginx] # awk 'BEGIN {
Test=100
If (test > 90)
{
Print "very good"
}
Else if (test > 60)
{
Print "good"
}
Else
{
Print "no pass"
}
}'
Very good
Each command statement can be followed by a ";" sign.
two。 Loop statement (while,for,do)
1.while statement
Format:
While (expression)
{statement}
Example:
The code is as follows:
[chengmo@localhost nginx] # awk 'BEGIN {
Test=100
Total=0
While (I)
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.