SHEBANG --- HOME --- BASIC VI COMMANDS
To create a shell script :
- Use a text editor to create a shell script.
- Save and close the Script file.
- Make the script executable.
- Run and test the script.
Create a file hello.sh
#!/bin/bash
echo "Hello Kshitiz!"
echo "Testing Shell Script, if working."
echo "YoHoo, successfully created first Shell Script."
Save and close the file.
Run the file.