for loop until loop and IFS separator

for loop

Three for loop formats

Insert picture description here
Insert picture description here
Insert picture description here

while statement

The format of while

Insert picture description hereInsert picture description here

Small example

Guess the commodity price game
Obtain a random number through the variable RANDOM
Prompt the user to guess and record the number of times, and exit the loop after the guess
Insert picture description here
Insert picture description here

until statement

format of until

Insert picture description here
Insert picture description here

Out of the loop

break out of the loop

Insert picture description here
Insert picture description here

break out of the two-layer loop

Insert picture description here
Insert picture description here

continue to abort a command in a loop, but not completely abort the entire command

Insert picture description here

Insert picture description here

IFS field separator

Contains spaces, tabs, and newlines by default

用法
IFSOLD=$IFS
IFS=$(所需要删除的分隔符)
、、、
IFS=$IFSOLD

Guess you like

Origin blog.csdn.net/xiwagogogo/article/details/114969866