Articles in this series
Introduction to Linux Bash scripting: course curriculum. · Bash is a command line shell and scripting language for Linux. It allows automating tasks,...
What is Bash and what is used for. · Bash stands for Bourne Again SHell. It is a Unix shell and command language widely used by Linux users. A shell is...
Explain how to define and use variables in Bash · Variables allow us to store values that we can reuse throughout our Bash scripts. They are an essential...
Learn about for and while loops in Bash · Loops are important in any Turing complete programming language because they allow programs to repeat blocks of...
Introduction to Bash functions · Functions are a useful way to organize code and reuse logic in Bash scripts. Here are some highlights of Bash...
ExplaiBash arrays for a beginner in Linux · Arrays are a useful data structure to store lists of items in Bash scripts. Here's how to define and use...