bash Bash while loop This article will cover the Bash while loop, exploring its syntax, usage, and of course, some practical examples. bash while loop. 4 min read
bash Bash for loop In this article, we'll explore the various forms of the for loop in Bash, including the standard syntax and the C-style variant. 5 min read
bash Bash Case Statement The case statement is a compound statement that evaluates an expression and executes the associated block of code based on the resulting value. 4 min read
bash Process Substitution in Bash Process substitution is a handy feature in Bash that lets you redirect the input and output of a process as if it were a file. 3 min read
bash Command Substitution in Bash Command substitution allows you to use the output of a command as an argument to another command or variable assignment. 1 min read
bash Functions in Bash Scripting In this article, we will cover the basics of how to define, call, pass arguments to, and return values from bash functions. 5 min read
bash Arithmetic Operations In Bash Being able to perform basic arithmetic operations like addition, subtraction, multiplication, and division is crucial for many scripting tasks. 3 min read
bash Quoting in Bash Scripting Bash supports three main types of quotations: single quotes, double quotes, and backslashes. 3 min read
bash Operators in Bash Scripting Operators allow you to perform operations on values and variables in Bash. Bash provides various types of operators for different purposes 3 min read