Writing your first shell script
Shell scripts are a simple way of completing (repetitive) tasks on the command line, much like many programming languages will be used. You will see ~ something — ignore the ‘~’ this is to signify that it is a command entered onto the command line itself.
Writing the code
~ vi helloworld.sh
#!/bin/bash
# My first script
MESSAGE=”Hello World!”
echo $MESSAGE
Here [...]