Bash script is a powerful tool for automating repetitive tasks and streamlining your workflow. However, as with any...
BASH Articles
Bash script: Error handling
When it comes to writing scripts in Bash, it's important to consider how to handle errors that may occur during the...
Bash script: Error checking
Bash is a powerful tool that can automate repetitive tasks and make your life easier. But with great power comes great...
Bash: Interactive versus non-interactive scripts
Bash, or the Bourne Again Shell, is a popular command-line interpreter for Unix-based systems. It is often used to...
Dealing with user input in bash script
Dealing with user input in bash script can be a tricky task, but with a little bit of knowledge and practice, it...
Variable naming in bash script
When it comes to writing a bash script, one of the most important things to keep in mind is how you name your...
What is a variable in bash script?
When it comes to programming, variables are a fundamental concept that you'll come across in any language. They're...
The Linux Filesystem and Structure Explained
If you're new to Linux, the filesystem can seem a bit overwhelming at first. There are a lot of different directories...
Setting Up Your Local Environment for Bash Scripting
Bash scripting is a powerful tool for automating tasks and streamlining your workflow. However, before you can start...
Introduction to Bash Scripting
Bash scripting is your gateway to the world of automation and efficient task management in the Unix/Linux environment....
Creating a config file and using it in tandem with your scripts
In this article, we are going to create a config file and use it in our shell script. Prerequisites Besides having a...
Calculating and reducing the runtime of a script
In this article, we are going to learn how to calculate and reduce the script’s runtime. A simple time command...