Linux Shell Scripting (9)

Learn the concept of While Loop in Linux Shell Scripting

0
After talking about the for loop, it is time to discuss the second type of loops: the while loop. Unlike the for loop, the...
Linux Shell Scripting (8) - Loops - For Loop

Learn the concept of For Loop in Linux Shell Scripting

0
There will be cases wherein you need to repeatedly execute a block of code. Such repeated execution of portions of your code is done...
Linux Shell Scripting (7)

Learn Decision Making using if conditions in Linux Shell Scripting

0
In the last article “Test Conditions”, we have learned how to create test statements that check for many various conditions. We have learned how...
Linux Shell Scripting (6)

Understanding Test Conditions in Linux Shell Scripting

0
In this article, we are going to tackle very important topic: the test conditions. Test conditions are very important when it comes to making...
arithmetic operators in linux shell scripting

Learn about Arithmetic Operators in Linux Shell Scripting

0
Variables would be completely useless if we didn't have operations to be done with them. But, fortunately, we do have. The Linux Shell has rich list...
variables in linux shell scripting

Learn about Variable in Linux Shell Scripting

0
“Change is the essence of life; be willing to surrender what you are for what you could become.” Reinhold Niebuhr Variables are named memory locations...
Linux Shell Scripting (3)

Writing Your First Script in Linux Shell Scripting

1
Now, the show starts… enjoy!! We know that a shell script is a collection of Linux commands saved together in a file. So, let's follow...
Linux Shell Scripting

Mastering Tools in Linux Shell Scripting

0
In the previous article, we had an introduction to Shell Scripting. To write good shell scripts, a Linux admin should have in hand all...
Linux Shell Scripting

Introduction to Linux Shell Scripting

3
In this series, we are going to learn Linux Shell Scripting. Shell Scripting is a very important skill that UNIX/Linux administrators can never go...