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 understand the while statement in Shell

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

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

How to understand the while sentence in Shell, many novices are not very clear about this, in order to help you solve this problem, the following editor will explain for you in detail, people with this need can come to learn, I hope you can gain something.

The while loop is used to execute a series of commands continuously, as well as to read data from an input file; commands are usually test conditions.

The while loop format is:

While conditiondo commanddone

The following is a basic while loop, and the test condition is: if int is less than or equal to 5, then the condition returns true. Int starts at 0, and int is added by 1 each time the cycle is processed. Run the above script, return the numbers 1 to 5, and then terminate.

#! / bin/bashint=1while (($int < = 5)) do echo $int let "int++" done

Run the script and output:

12345

The above example uses the Bash let command, which is used to execute one or more expressions. There is no need to add $to represent the variable in the variable calculation. For more information, please see: Bash let command

.

The while loop can be used to read keyboard information. In the following example, the input information is set to the variable FILM and press to end the loop.

Echo 'Press exit' echo-n 'enter the name of your favorite website:' while read FILMdo echo 'Yes! $FILM is a good website "done"

Run the script with output similar to the following:

Press exit to enter the name of your favorite website: rookie tutorial yes! The rookie tutorial is a good website.

Infinite cycle

Infinite loop syntax format:

While: do commanddone

Or

While truedo commanddone

Or

Is it helpful for you to finish reading the above content by for ((;))? If you want to know more about the relevant knowledge or read more related articles, please follow the industry information channel, thank you for your support.

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: 265

*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