In Linux distributions, the bash shell environment is the key element for managing the system components. Several commands are executed on the bash shell to perform a specific task. All bash commands are mostly stored in a bash script file with the ‘.sh’ extension. The .sh file is a shell script that is used to install an application or to perform various jobs in Linux / UNIX operating systems. The main benefit of writing the shell script is that you do not need to write different commands again on terminal windows.
This tutorial will help you to create and run the .sh file or bash scripts using the terminal on the Linux system.
In this method, you learn how to run sh file using the Terminal application.
First, create a shell script file that we will run through the terminal. Open the text editor and add the following content to this file.
echo "Hello this is my first shell script."
Save it with ‘testscript.sh’.
After creating the sh script file, it is important to set some executable permissions. Otherwise, you will receive an error of ‘permission denied’ on your screen.
To make this sh file executable use this command:
$ chmod +x filename.sh
Here, name of the file is ‘testscript.sh’.
$ chmod +x testscript.sh
You can verify whether the required file is executable or not by executing the following command:
$ ls -l testscript.sh
This output will receive on the terminal that represents sh file as executable.
Using the two different methods, you can run sh script using the terminal on a Linux system.
The first method to run sh script is by calling the name of the file with its complete.
$ ./testscript.sh
The alternative method to run sh file is by executing the bash command.
$ bash ./testscript.sh
The current user with having sudo privileges can also run the sh file as:
$ sudo ./testscript.sh
You can also debug the shell script by using the ‘-x’ option.
$ bash -x ./testscript.sh
If you are using the GUI environment in Linux, you can also run sh file in the following steps:
We have seen how to run sh files using the terminal as well as using the command line or terminal. We explored various commands that are used for running sh files. Using the shell script, you can easily solve complex problems using a short script that also saves our time.
Karim Buzdar holds a degree in telecommunication engineering and holds several sysadmin certifications including CCNA RS, SCP, and ACE. As an IT engineer and technical author, he writes for various websites.
You’ve recently installed VMware Workstation on your Ubuntu system and encountered the frustrating “Could not…
Have you ever found yourself staring at a terminal full of 404 errors while trying…
One particularly frustrating error that many users face when trying to upgrade from Ubuntu 18.04 …
In the world of containerization, time synchronization issues can create unexpected roadblocks when working with…
If you’ve recently upgraded to Ubuntu 23.04 or newer, you might have encountered a frustrating…
Canonical announces the General Availability of Ubuntu for the NVIDIA® Jetson Orin™ for edge AI…