First page Back Continue Last page Overview Graphics
How to make a simple bash script
We can make a bash script simply by entering our simple Linux commands within a text file and then make the file executable (chmod +x your_bash_file) and run it on the command line (./your_bash_file)
Do not forget the ./ ! The ./ indicates that your bash file exists in the current directory.