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...
Learn How To Write Interactive shell scripts

Learn How To Write Interactive shell scripts

0
An interactive script is a one that interacts with the user and requires user input. In this type of scripts, data flow in both...
arrays in linux shell scripting

Learn the concept of Arrays in Linux Shell Scripting

0
An Array is a data structure that stores a list (collection) of objects (elements) that are accessible using zero-based index. In Linux shells, arrays...
Linux Shell Scripting Managing Services

Learn Managing Services in Linux Shell Scripting

0
In this article, we are going to talk about new topic: Managing Services.   What is Service? A service is a software program whose functionality is to...
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 (16)

Learn Text Processing Tools in Linux Shell Scripting – Part 3

0
This is Part three, the last article in the series of Text Processing Tools. The awk Language Yes, you haven’t misread it. awk is a pattern...
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 (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 (30) - Netcat

Learn about Netcat: your network Swiss knife in Shell Scripting

0
Do you want to test connectivity to your mail server on port 25? Do you want to make a quick port scan? Perhaps you...
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...