break continue exit

break jump out of the entire loop body, continue to execute the statement outside the loop

continue Jump out of this loop and continue to the next loop

exit Exit the current shell program

Guess you like

Origin blog.csdn.net/bjgaocp/article/details/110229215