Changes

Jump to: navigation, search

Tutorial12: Shell Scripting - Part 2

48 bytes added, 09:40, 21 March 2021
INVESTIGATION 3: exit AND break STATEMENTS
# Issue the following command (without arguments):<br><span style="color:blue;font-weight:bold;font-family:courier;">./break-1.bash</span><br><br>When prompted, enter several '''invalid''' and '''valid''' integers that are '''NOT 5''', and then finally enter the value '''5'''.<br><br>What happens?<br><br>Let's use the '''break''' statement with the '''for''' loop.<br><br>
# Use a text editor like vi or nano to create the text file called '''break-2.bash''' (eg. <span style="color:blue;font-weight:bold;font-family:courier;">vi break-2.bash</span>)<br><br>
# Enter the following lines in the '''break-2.bash''' shell script:<br><span style="font-family:courier;font-weight:bold;">#!/bin/bash<br><br>for x<br>do<br><br> &nbsp; if [ $x = "uli101" ]<br> &nbsp; then<br> &nbsp; &nbsp; &nbsp;break<br> &nbsp; fi<br> &nbsp; echo "Argument is: $x"<br>done<br><br>echo<br>echo "Shell script now completed</span><br><br>
# Save your editing session and exit the text editor (eg. with vi: press '''ESC''', then type ''':x''' followed by '''ENTER''').<br><br>
# '''Add execute permissions''' for this Bash shell script.<br><br>
13,420
edits

Navigation menu