Linux Shell Scripting Scripting for Network Part 2

Learn Linux Shell Scripts for Network – Part 2

0
In this article, we are going to complete what we have started in part1.   The host command This command is used to convert names to IP...
Linux Shell Scripting (23) - Randomization Generating Random Numbers

Generating Random Numbers in Linux Shell Scripting

1
There will be cases wherein you need something to be random: a random number, a random sequence of characters, a random file name, or...
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 (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 (27) - Effective One-Liners (2)

Learn More about Effective One-Liners in Linux Shell Scripting

0
In the previous article, we had a talk on One-Liners. We have seen how a composite statement that is as short as fitting in...
Linux Shell Scripting for Network

Learn To Write Linux Shell Scripts for Network

0
"Doesn't deserve to be born, who live only for himself." An Arabian Saying. Computer networking is analogous to what we see in our life. Nobody...

Generate Random Passwords in Shell Scripting via Character Array Method

1
In the previous article, we have learned how to generate random passwords using two methods: 1. The mkpasswd command. 2. Calculating the Hash for a random...
Linux Shell Scripting Managing processes

Learn Managing Processes in Linux Shell Scripting

0
In this article, we are going to tackle a new topic: Managing Processes.   What is process? A process is a program loaded in memory.   A typical process...
Randomization Generating Random Passwords(1)

Learn to Generate Random Data and Password in Linux Shell Scripting

0
After learning how to generate random numbers, we are going to learn how to generate random data, and random passwords. Some of the concepts...
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...