LLinux Read More 5 minute read The Fork System Call in LinuxbyMuhammad AzizMarch 13, 2022 In this article, you will find a brief description of the fork system call and how it works.…
LLinux Read More 3 minute read Bash CommentsbyMuhammad AzizFebruary 11, 2022 Comments are used in programming languages as well as in Bash script for writing descriptions. Often you want…
LLinux Read More 8 minute read Wget Command in Linux with ExamplesbyMuhammad AzizFebruary 10, 2022 In this tutorial, you will learn about the wget command, its options, and how you can use these…
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 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 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…
MMiscellaneous Read More 6 minute read DNS: What Is It, What Is It Used For and How It WorksbyMuhammad AzizDecember 12, 2021 As you may know, computers use IP addresses to connect with each other and communicate. However, humans use…
LLinux Read More 5 minute read How to Use the Linux Screen CommandbyMuhammad AzizNovember 26, 2021 In Linux, you often need to run lengthy processes to execute in the background and independently (such as…
LLinux Read More 5 minute read How to Use make and makefile in LinuxbyMuhammad AzizNovember 20, 2021 One of the main reasons why Linux is popular among C/C++ programmers is the support provided by Linux…
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…