Open main menu

CDOT Wiki β

Changes

Tutorial10: Shell Scripting - Part 1

30 bytes added, 07:45, 18 July 2020
INVESTIGATION 1: CREATING A SHELL SCRIPT
# '''Login''' your matrix account.<br><br>
# Issue a command to '''confirm''' you are located in your home directory.<br><br>We want to create a Bash Shell script to welcome the userby their username. Let's first provide some useful tips in terms<br>of selecting an appropriate name for the shell script.<br><br>
# Issue the following linux command to check if your intended shell script name<br>is already exists to be run automatically from the Bash shell:<br><span style="color:blue;font-weight:bold;font-family:courier;">which hello</span><br><br>You should notice that there is no output and therefore, this shell script name can be used.<br>On the other hand, if you wanted to create a file called sed, then the '''which sed''' command<br>would indicate it is already being used by the shell and that '''sed''' wouldn't be an appropriate shell script name to use.<br><br>
# Use a text editor like vi or nano to create the text file called hello (eg. <span style="color:blue;font-weight:bold;font-family:courier;">vi hello</span>)<br><br>
# Enter the following two lines in your shell script, replacing "your name-username" with your actual name:<br><span style="font-family:courier;">clear<br>echo "Hello Your Nameyour-username"</span><br><br>
# Save your editing session and exit the text editor (eg. with vi: press '''ESC''', then type ''':wx''' followed by '''ENTER''').<br><br>
# Issue the following linux command to run your shell script in your current directory:<br><span style="color:blue;font-weight:bold;font-family:courier;">./hello</span><br><br>You should notice an error indicating you don't have permissions to run the file.<br>You need to first add execute permissions prior to running the shell script.<br><br>
# Issue the following linux command to add execute permissions for your shell script:<br><span style="color:blue;font-weight:bold;font-family:courier;">chmod u+x hello</span><br><br>
# Re-run your shell script: <span style="color:blue;font-weight:bold;font-family:courier;">./hello</span><br><br>You should now see your screen clear and displays a greeting to you using your nameusername.<br><br>
# x
13,420
edits