If you have prior experience of programming and you are just getting started with bash, there’s one thing that you may find a little odd. Unlike other programming languages, functions in bash do not return any value. Instead, it returns exit status
Read More
Adding comments in bash scripts is one of the most effective ways to keep your code clean and understandable. You may ask why. Let’s suppose your script contains a complex regex or multiple complex blocks of codes and in that case, you
Read More