Open main menu

CDOT Wiki β

Changes

Tutorial12: Shell Scripting - Part 2

1 byte added, 08:50, 18 March 2021
INVESTIGATION 2: ADDITIONAL LOOPING STATEMENTS
# Issue the following linux command to set positional parameters in your current shell:<br><span style="color:blue;font-weight:bold;font-family:courier;">set apples oranges bananas pears</span><br><br>
# Issue the following linux command:<br><span style="color:blue;font-weight:bold;font-family:courier;">echo $#</span><br><br>What do you notice? What does this value represent?<br><br>
# Issue the following linux command:<br><span style="color:blue;font-weight:bold;font-family:courier;">echo $*</span><br><br>What do you notice?<br><br>These positional parameters could can be used with a for loop. To simplify things,<br>let's create another shell script that uses '''command substitution''' and within a '''for''' loop.<br><br>
# Use a text editor like vi or nano to create the text file called '''for-3.bash''' (eg. <span style="font-weight:bold;font-family:courier;">vi for-3.bash</span>)<br>If you are using the nano text editor, refer to notes on text editing in a previous week in the course schedule.<br><br>
# Enter the following lines in your shell script:<br><span style="font-family:courier;font-weight:bold;">#!/bin/bash<br>clear<br>set 10 9 8 7 6 5 4 3 2 1<br>for x<br>do<br>&nbsp;&nbsp;&nbsp;echo $x<br>done<br>echo "blast-off!"</span><br><br>
13,420
edits