1. Shell Scripting Introduction
How to execute the script? use ./script-name.sh else can do sh script-name.sh for Bourne shell else bash script-name.sh for Bourne again shell execution. This does not matter which shell you use sh or bash as for normal scripts it will have same output, this is needed when you want specific shell to run your script. […]