LLinux Read More 5 minute read Increment and Decrement Variables in BashbyMuhammad AzizFebruary 2, 2022 A variable is a placeholder that is used to store any numerical or text value so that it…
LLinux Read More 2 minute read Bash Write to FilebyEdXDJanuary 19, 2022 Reading and writing to files are common tasks among Linux command-line users. There are two ways in bash…
LLinux Read More 5 minute read Check if a String Contains a Substring in BashbyMuhammad AzizJanuary 18, 2022 In shell scripting, you may come to a situation where you need to find a substring from a…
LLinux Read More 5 minute read Bash Until LoopbyMuhammad AzizJanuary 17, 2022 Loop is a fundamental concept in computer programming languages. This concept can be used in bash scripts as…
LLinux Read More 2 minute read Bash Case StatementbyEdXDJanuary 16, 2022 The bash case statement is used to simplify complex conditionals in a bash script. Bash case statements use…
LLinux Read More 6 minute read Bash While LoopbyMuhammad AzizJanuary 16, 2022 In almost all programming languages, a loop is an easy and basic method used to repeat single or…
LLinux Read More 8 minute read Bash For LoopbyMuhammad AzizDecember 22, 2021 Loops are used in computer programming languages to repeat certain instructions several times. This is not only to…
LLinux Read More 2 minute read How to Concatenate Strings in BashbyEdXDDecember 12, 2021 String concatenation is the process of joining two or more strings together to form a single string. In…
MMiscellaneous Read More 4 minute read How to Use getopts in BashbyMuhammad AzizNovember 8, 2021 In Linux, tasks can be automated by writing several commands in one script and then executing the script…