Skip to Content
Shell Scripting: Expert Recipes for Linux, Bash, and More
book

Shell Scripting: Expert Recipes for Linux, Bash, and More

by Steve Parker
August 2011
Beginner to intermediate
600 pages
14h 29m
English
Wrox
Content preview from Shell Scripting: Expert Recipes for Linux, Bash, and More

Breaking and Continuing Loop Execution

Although the preceding features can provide very neat and controlled execution of loops, sometimes it is more practical to break out of a loop when partway through it. It is possible to do this with the break command. This shell builtin gets you out of the innermost loop that it is in; you can specify greater levels by passing it a numerical argument. The default is 1, which indicates the current loop. break 2 will break out of the innermost loop, and also out of the loop that contains it. break 3 will also break out of the loop around the second loop, and so on. This example has two for loops; the outer loop counts from 1 to 6, while the inner loop runs through a,b,c,d,e,f. As demonstrated by the first test run, the inner loop exits when you press 1, continuing with the next number in sequence. When you press 2, both loops are broken out of, and the execution continues after the final done, with the echo "That's all, folks".

cat break.sh #!/bin/bash for number in 1 2 3 4 5 6 do   echo "In the number loop - $number"   read -n1 -p "Press b to break out of this loop: " x   if [ "$x" == "b" ]; then     break   fi   echo   for letter in a b c d e f   do     echo     echo "Now in the letter loop... $number $letter"     read -n1 -p "Press 1 to break out of this loop, 2 to break out totally: " x     if [ "$x" == "1" ]; then       break     else       if [ "$x" == "2" ]; then         break 2       fi     fi   done   echo done echo echo "That's ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Linux Command Line and Shell Scripting Techniques

Linux Command Line and Shell Scripting Techniques

Vedran Dakic, Jasmin Redzepagic
Linux Shell Scripting Cookbook - Third Edition

Linux Shell Scripting Cookbook - Third Edition

Clif Flynt, Sarath Lakshman, Shantanu Tushar

Publisher Resources

ISBN: 9781118166321Purchase bookDownloads