Difference between revisions of "Tutorial12: Shell Scripting - Part 2"

From CDOT Wiki
Jump to: navigation, search
(Additional Logic Statements)
(Additional Logic Statements)
Line 49: Line 49:
 
[[Image:if-else.png|thumb|right|300px|Example of how an '''if-else''' statement works.]]'''if-else Statements'''
 
[[Image:if-else.png|thumb|right|300px|Example of how an '''if-else''' statement works.]]'''if-else Statements'''
  
Unlike using only an if statement, an if-else statement take '''two different sets of actions''' based on the results of the test condition.<br><br>'''How it Works:'''<br><br>When the test condition returns a '''TRUE''' value, then the Linux Commands between<br>'''then''' and '''else''' statements are executed.<br><br>If the test returns a '''FALSE''' value, then the the Linux Commands between<br>the '''else''' and '''fi''' statements are executed.
+
Unlike using only an if statement, an if-else statement take '''two different sets of actions'''<br>based on the results of the test condition.<br><br>'''How it Works:'''<br><br>When the test condition returns a '''TRUE''' value, then the Linux Commands between<br>'''then''' and '''else''' statements are executed.<br><br>If the test returns a '''FALSE''' value, then the the Linux Commands between<br>the '''else''' and '''fi''' statements are executed.
  
 
'''Example:'''
 
'''Example:'''

Revision as of 08:55, 5 September 2020

ADDITIONAL SHELL SCRIPTING


Main Objectives of this Practice Tutorial

  • Use the if-else and if-elif-else control flow statements.
  • Use alternative methods with the for loop control flow statement.
  • Use command substitution with control-flow statements
  • Configure and use the .bashrc start-up file.



Tutorial Reference Material

Course Notes
Linux Command/Shortcut Reference
YouTube Videos
Course Notes:


Additional Control Flow Statements Startup Files


Brauer Instructional Videos:

KEY CONCEPTS

Additional Logic Statements


Example of how an if-else statement works.
if-else Statements

Unlike using only an if statement, an if-else statement take two different sets of actions
based on the results of the test condition.

How it Works:

When the test condition returns a TRUE value, then the Linux Commands between
then and else statements are executed.

If the test returns a FALSE value, then the the Linux Commands between
the else and fi statements are executed.

Example:

num1=5
num2=10
if test $num1 –lt $num2
then
   echo “Less Than”
else
echo    “Greater Than or Equal to”
fi


Example of how an if-elif-else statement works.
if-elif-else Statements

If the test condition returns a TRUE value, then the Linux Commands between
then and else statements are executed.

If the test returns a FALSE value, then a new condition is tested,
and action is taken if the result is TRUE . Eventually, an action will be taken
when the final test condition is FALSE

Example:

num1=5
num2=10
if test $num1 –lt $num2
then    echo “Less Than”
elif test $num1 –gt $num2
then
   echo “Greater Than”
else    echo “Equal to”
fi


Additional Loop Statements

Example of how a for loop with command substitution works.
Command Substitution

command substitution is a facility that allows a command
to be run and its output to be pasted back on the command line as arguments to another command.
Reference: https://en.wikipedia.org/wiki/Command_substitution

Examples:

command1 $(command2)
command1 [arguments from command2 output]


for Loop using Command Substitution

Let’s issue the for loop with a list using command substitution.
In the example below, we will use command substitution to issue the ls command and
have that output (filenames) become arguments for the for loop.

Example:

for x in $(ls)
do
   echo “The item is: $x”
done


Example of how a while loop works.
while Loop Statement

The condition/expression is evaluated, and if the condition/expression is true,
the code within … the block is executed. This repeats until the condition/expression becomes FALSE.
Reference: https://en.wikipedia.org/wiki/While_loop

Example:

answer=10
read –p “pick a number between 1 and 10: “ guess
while test $guess –eq 10
do    read –p “Try again: “ guess
done
echo “You are correct”


Using Startup Files

Shell configuration files are scripts that are run when you log in, log out, or start a new shell. The start-up files can be used, for example, to set the prompt and screen display, create local variables, or create temporary Linux commands (aliases)

The /etc/profile file belongs to the root user and is the first start-up file that executes when you log in, regardless of shell.

User-specific config start-up files are in the user's home directory: ~/.bash_profile runs when you log in ~/.bashrc runs when you start an interactive sub-shell.

Logout Files

There are files that reset or restore the environment or properly shut-down running programs when the user logs out of their shell. User-specific logout start-up files are in the user's home directory: ~/.bash_logout

INVESTIGATION 1: ADDITIONAL LOGIC STATEMENTS


In this section, you will learn additional control-flow statements to allow your shell scripts to be more flexible.


Perform the Following Steps:

  1. Login to your matrix account.

  2. Issue a command to confirm you are located in your home directory.

    In a previous tutorial, you learned how to using the if control-flow statement. You will now learn to use the if-else statement
    to take two different actions based on if the condition tests either TRUE OR FALSE.

  3. Use a text editor like vi or nano to create the text file called if-3.bash (eg. vi if-3.bash)

    If you are using the nano text editor, refer to notes on text editing in a previous week in the course schedule.

  4. Enter the following lines in your shell script:
    #!/bin/bash
    clear
    read -p "Enter the first number: " num1
    read -p "Enter the second number: " num2
    if [ $num1 -gt $num2 ]
    then
       echo "The first number is greater than the second number."
    else
       echo "The first number is less than or equal to the second number."
    fi


  5. Save your editing session and exit the text editor (eg. with vi: press ESC, then type :wx followed by ENTER).

  6. Issue the following linux command to add execute permissions for your shell script:
    chmod u+x if-3.bash

  7. Run your shell script by issuing: ./if-3.bash

    What do you notice? Try running the script several times with numbers different and equal to each other to
    confirm that the shell script works correctly.

    It would be nice to have a separate result of the numbers are equal to each other.
    In order to achieve this, you can use an if-elif-else statement.

  8. Use a text editor like vi or nano to create the text file called if-4.bash (eg. vi if-4.bash)

    If you are using the nano text editor, refer to notes on text editing in a previous week in the course schedule.

  9. Enter the following lines in your shell script:
    #!/bin/bash
    clear
    read -p "Enter the first number: " num1
    read -p "Enter the second number: " num2
    if [ $num1 -gt $num2 ]
    then
       echo "The first number is greater than the second number."
    elif [ $num1 -lt $num2 ]
    then
       echo "The first number is less than the second number."
    else
       echo "The first number is equal to the second number."
    fi


  10. Save your editing session and exit the text editor (eg. with vi: press ESC, then type :wx followed by ENTER).

    NOTE: You should notice in this control-flow statement differs from an if-else statement since if the first condition is FALSE, it is tested again, which can produce two different actions depending if the second test is TRUE or FALSE.

  11. Issue the following linux command to add execute permissions for your shell script:
    chmod u+x if-4.bash

  12. Run your shell script by issuing: ./if-4.bash

    What do you notice? Try running the script several times with numbers different and equal to each other
    to confirm that the shell script works correctly.

    A classic shell script to demonstrate many different paths or actions to take depending of multiple testing
    using an if-elif-else statement would be a mark to letter grade converter.

  13. Use a text editor like vi or nano to create the text file called if-5.bash (eg. vi if-5.bash)

    If you are using the nano text editor, refer to notes on text editing in a previous week in the course schedule.

  14. Enter the following lines in your shell script:
    #!/bin/bash
    clear
    read -p "Enter a mark (0-100): " mark
    if [ $mark -ge 80 ]
    then
       echo "You receive an A grade."
    elif [ $mark -ge 70 ]
    then
       echo "The receive a B grade."
    elif [ $mark -ge 60 ]
    then
       echo "The receive a C grade."
    elif [ $mark -ge 50 ]
    then
       echo "The receive a D grade."
    else
       echo "You receive an F grade."
    fi


  15. Save your editing session and exit the text editor (eg. with vi: press ESC, then type :wx followed by ENTER).

  16. Issue the following linux command to add execute permissions for your shell script:
    chmod u+x if-5.bash

  17. Run your shell script by issuing: ./if-5.bash

    What do you notice? Run several times to confirm that the shell script runs correctly for all mark (grade) categories.

In the next investigation, you will learn more about the for loop and learn how to use the while loop for error-checking.

INVESTIGATION 2: ADDITIONAL LOOPING STATEMENTS

In this section, you will learn more about the for loop and learn how to use the while loop for error-checking.


Perform the Following Steps:

  1. Use the more command to view the contents of the text file called for-1.bash (eg. more for-1.bash)

    As you should have noticed from tutorial 10 that the for loop can use a list.
    You can also use the for loop with positional parameters stored as arguments from an executed shell script.
    We will revisit this now.

  2. Use the more command to view the text file called for-2.bash (eg. more for-2.bash)

    If you are using the nano text editor, refer to notes on text editing in a previous week in the course schedule.

  3. Run your shell script by issuing: ./for-2.bash 10 9 8 7 6 5 4 3 2 1

    You should notice the script looped for each argument following the shell script.

    You can also use the for loop with a list using command substitution - this is an effective technique to loop within a shell script.

  4. First, you need to learn how to use command substitution to store arguments as positional parameters.
    Issue the following linux command to set positional parameters in your current shell:
    set apples oranges bananas pears

  5. Issue the following linux command:
    echo $#

    What do you notice?

  6. Issue the following linux command:
    echo $*

    What do you notice?

    These positional parameters could be used with a for loop. To simplify things, let's create another shell script that uses command substitution and a for loop.

  7. Use a text editor like vi or nano to create the text file called for-2.bash (eg. vi for-3.bash)

    If you are using the nano text editor, refer to notes on text editing in a previous week in the course schedule.

  8. Enter the following lines in your shell script:
    #!/bin/bash
    clear
    set 10 9 8 7 6 5 4 3 2 1
    for x
    do
       echo $x
    done
    echo "blast-off!"


  9. Save your editing session and exit the text editor (eg. with vi: press ESC, then type :wx followed by ENTER).

  10. Issue the following linux command to add execute permissions for your shell script:
    chmod u+x for-3.bash

  11. Run your shell script by issuing: ./for-3.bash

    What do you notice? How does the result differ from the shell script called for-2.bash. Why?

    Let's create another shell script to run a loop for each file that is contained in your current directory using command substitution.

  12. Use a text editor like vi or nano to create the text file called for-4.bash (eg. vi for-4.bash)

    If you are using the nano text editor, refer to notes on text editing in a previous week in the course schedule.

  13. Enter the following lines in your shell script:
    #!/bin/bash
    clear
    set $(ls)
    echo Here are files in my current directory:"
    echo
    for x
    do
       echo "    $x"
    done


  14. Save your editing session and exit the text editor (eg. with vi: press ESC, then type :wx followed by ENTER).

  15. Issue the following linux command to add execute permissions for your shell script:
    chmod u+x for-4.bash

  16. Run your shell script by issuing: ./for-4.bash

    What do you notice?

    We can save a line in our shell script by using command substitution in the for loop using a list. Let's demonstration this in another shell script.

  17. Use a text editor like vi or nano to create the text file called for-5.bash (eg. vi for-5.bash)

    If you are using the nano text editor, refer to notes on text editing in a previous week in the course schedule.

  18. Enter the following lines in your shell script:
    #!/bin/bash
    clear
    echo Here are files in my current directory:"
    echo
    for x in $(ls)
    do
       echo "    $x"
    done
  19. Save your editing session and exit the text editor (eg. with vi: press ESC, then type :wx followed by ENTER).

  20. Issue the following linux command to add execute permissions for your shell script:
    chmod u+x for-5.bash

  21. Run your shell script by issuing: ./for-5.bash

    What do you notice? Does the output for this shell script differ than for-4.bash? Why?

    The last thing in this section is to introduce you to error-checking.

  22. Use the more command to view the text file called if-5.bash (eg. more if-5.bash)

    Take a few moments to re-familiarize yourself with this shell script

  23. Run your shell script by issuing: ./if-5.bash

    When prompted, enter a letter instead of a number. What happens?

    Let's edit the if-5.bash shell script to perform error-checking to force the user to enter a numeric value between 0 and 100.

    NOTE: The while statement can be used with the test command (or a simple linux command or a linux pipeline command) for error checking. In our case, we will use a pipeline command with extended regular expressions. In order to loop while the result is TRUE (not FALSE), you can use the negation symbol (!) to set the test condition to the opposite.

  24. Use a text editor like vi or nano to edit the text file called if-5.bash (eg. vi if-5.bash)

    If you are using the nano text editor, refer to notes on text editing in a previous week in the course schedule.

  25. Add the following lines in your shell script AFTER the read statement to prompt the user for a mark:

    while ! echo $mark | egrep "^[0-9]{1,}$" > /dev/null 2> /dev/null
    do
       read -p "Not a valid number. Enter a mark (0-100): " mark
    done


  26. Save your editing session and exit the text editor (eg. with vi: press ESC, then type :wx followed by ENTER).

  27. Run your shell script by issuing:
    ./if-5.bash

  28. When prompted, enter a letter instead of a number. What happens?
    Does the shell script allow you to enter an invalid grade like 200 or -6?

    Let's add an additional error-checking loop to force the user to enter a number between 0 and 100.

  29. Use a text editor like vi or nano to edit the text file called if-5.bash (eg. vi if-5.bash)

  30. Add the following lines in your shell script AFTER the PREVIOUSLY ADDED error-checking code block to force the user to enter a valid number:

    while [ $mark -lt 0 ] || [ $mark -gt 100 ]
    do
       read -p "Invalid number range. Enter a mark (0-100): " mark
    done


  31. Save your editing session and exit the text editor (eg. with vi: press ESC, then type :wx followed by ENTER).

  32. Run your shell script by issuing:
    ./if-5.bash

  33. When prompted, enter a letter instead of a number. What happens?
    Does the shell script allow you to enter an invalid grade like 200 or -6?

In the next investigation, you will learn to create and test-out start-up files to customize your shell.

INVESTIGATION 3: USING STARTUP FILES

In this section, you will learn how to customize your Bash Linux shell by creating and testing a startup file.


Perform the Following Steps:

  1. Use the more command to view the contents of the start-up file called /etc/profile (eg. more /etc/profile)

    This file contains the default settings when you open your Bourne shell (eg. if issuing the command sh).

  2. Use the more command to view the contents of the start-up file called /etc/bashrc (eg. more /etc/bashrc)

    This file contains the default settings when you open your Bash shell (eg. if issuing the command bash).

    Since we are using the Bash shell by default, let's create a customized Bash start-up file.
    This startup file is located in your home directory using the name ".bashrc"

  3. Let's move your .bashrc file to prevent accidental overwrite. Issue the following linux command:
    mv ~/.bashrc ~.bashrc.bk

    If you experience an error message "No such file or directory", just ignore since there is no startup file to backup.

  4. Use a text editor like vi or nano to create the text file called ~/.bashrc (eg. vi ~/.bashrc)

    If you are using the nano text editor, refer to notes on text editing in a previous week in the course schedule.

  5. Enter the following lines in your shell script (the symbol "[" is the open square bracket symbol):
    clear
    echo -e -n "\e[0;34m"
    echo "Last Time Logged in (for security):"
    echo
    lastlog -u $USER
    echo
    echo -e -n "\e[m"


  6. Save your editing session and exit the text editor (eg. with vi: press ESC, then type :wx followed by ENTER).

  7. You can test run the startup file without exiting and re-entering your Bash shell environment.
    Issue the following:
    . ~/.bashrc

    What do you notice?

  8. Exit your current Bash shell session.

  9. Login again to your matrix account.

    Did you start-up file customize your Bash shell environment with colours?

  10. Issue the following linux command to restore your previous settings for your bashrc startup file:
    mv ~/.bashrc.bk ~/.bashrc

    If you experience an error message "No such file or directory", just ignore.

  1. After you complete the Review Questions sections to get additional practice, then work on your online assignment 3,
    sections 4 to 6 labelled: More Scripting (add), Yet More Scripting (oldfiles), and sed And awk

WORKING EFFECTIVELY IN THE LINUX ENVIRONMENT

I hope this series of tutorials have been helpful in teaching you basic Linux OS skills.

In order to get efficient in working in the Linux environment requires practice and applying what you have learned to administering Linux operating systems including users, applications, network services and network security.

Although you are NOT required to perform advanced Linux administration for this course, there are useful course notes and tutorials for advanced Linux server administration that have been created for the Networking / Computer Support Specialist stream:



Take care and good luck in your future endeavours,

Murray Saul

LINUX PRACTICE QUESTIONS

The purpose of this section is to obtain extra practice to help with quizzes, your midterm, and your final exam.

Here is a link to the MS Word Document of ALL of the questions displayed below but with extra room to answer on the document to simulate a quiz:

https://ict.senecacollege.ca/~murray.saul/uli101/uli101_week12_practice.docx

Your instructor may take-up these questions during class. It is up to the student to attend classes in order to obtain the answers to the following questions. Your instructor will NOT provide these answers in any other form (eg. e-mail, etc).


Review Questions:

  1. Create a Bash shell script called retire.bash that when run, clears the screen, and then prompts the user for their age. If the age entered is less than 65, then display a message that the person is NOT eligible to retire. If the age is equal to 65, then display a message that the person just turned 65 and can retire. If the age is greater than 65, then display the message that the user is over 65 and why have they not have already retired already?

  2. Add code to the retire.bash script created in the previous question to force the user to enter only an integer to provide error-checking for this shell script.

  3. What is the purpose of the /etc/profile startup file?

  4. What is the purpose of the /etc/bashrc startup file?

  5. What is the purpose of the ~/.bashrc startup file?

  6. What is the purpose of the ~/.bash_logout file?

  7. Write code for the ~/.bashrc file below to clear the screen, welcome the user by their username, and display a list of all users currently logged into your Matrix server. Insert blank lines between each of those elements.

  8. Write a command to run the recently created ~/.bashrc startup file from the previous question without exiting and re-logging into your Matrix account.