Changes

Jump to: navigation, search

Tutorial10: Shell Scripting - Part 1

793 bytes added, 08:45, 20 July 2020
INVESTIGATION 3: USING CONTROL FLOW STATEMENTS IN SHELL SCRIPTS
# Issue the correct linux command to properly test both values:<br><span style="color:blue;font-weight:bold;font-family:courier;">test $number1 -gt $number2</span><br><br>
# Issue a linux command to display the value of '''$?'''. You should notice that the exit status value is now FALSE which is the correct result.<br><br>
# The '''test''' command can be abbreviated by the square brackets &#91; &#93;which contain the test condition within the square brackets. You need to have spaces between the brackets and the test condition; otherwise, you will get a test error.<br><br># To generate a test error, issue the improper use of the '''test''' command:<br><span style="color:blue;font-weight:bold;font-family:courier;">&#91;$number1 -gt $number2&#93;</span><br><br>You should notice an test error message.<br><br># Issue the correct use of the '''test''' command:<br><span style="color:blue;font-weight:bold;font-family:courier;">&#91; $number1 -gt $number2 &#93;</span><br><br>Issue a command to view the value of the exit status of the previously issued '''test''' command. You should notice that is works properly.<br><br>
= LINUX PRACTICE QUESTIONS =
13,420
edits

Navigation menu