Running your first shell script
We'll break down the components of our first script. If you do not have an editor please refer to the getting started with vim guide below
Last updated
Was this helpful?
We'll break down the components of our first script. If you do not have an editor please refer to the getting started with vim guide below
Last updated
Was this helpful?
First open your favorite text editor and create file named hello.sh
Save the file and exit your text editor.
We'll update our file permission to make the file executable:
Once the script has been made executable it can be run
If you do not recieve the expected output double check the directory, and the permissions of the file, the permissions for the file should be as such.
What we're looking for in this case is the x
on the left side of the permissions. For more info on permissions refer to the permissions page below.