Step: 1
Open VI editor or GEDIT
Step: 2
Copy paste the following lines in that file
(example: filename- myscript.sh)
#!/bin/bash
# My first script
echo "Hello World!"
Step: 3
Change the permission
sudo chmod -R 777 myscript.sh
Step: 4
Run the script
./myscript.sh