4. Create a personal script for opening your favorite websites.
For this example, we will do a basic script that opens a web browser to your favourite website or websites.
Once you are in nano, always start by typing the shebang symbols “ #!” and the location of the BASH directory “/bin/bash.

Then enter “xdg-open” and your favorite website. You can enter as many websites as you wish. Let’s say you are working on your banking for
example and you could run one script that could open all of your sites that you use for you online banking needs.
Once you are done, type “ctrl+x” and “y” and then “enter”.
Back to the command line, to open your script you will have to modify your permissions to open the script.
Type “chmod +x” and then the name of the file. Then try again to open the script by typing “./firstScript.sh”
Then your favorite websites will open automatically.