BASH Articles

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 and files, and it can be hard to know what they're all for. In this article, we'll take a look at the Linux filesystem and explain what all the...

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 writing and running scripts, you need to set up your local environment to support Bash. This process can seem daunting at first, but with a little bit...

Introduction to Bash Scripting

Bash scripting is your gateway to the world of automation and efficient task management in the Unix/Linux environment. At its core, Bash (Bourne Again Shell) is a powerful command-line interpreter that goes beyond simple command execution. It enables you to write...

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 terminal open, you need basic knowledge of creating scripts and config files. Write script Now, we are going to create a script and config file. The...