automate ftp transfers

How to Automate FTP transfers in Linux Shell Scripting

10
Whether you are responsible for uploading files regularly to a remote web server, or syncing configuration files among a number of machines, most of...
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...
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...
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...
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 User Input Validation

Learn Validating User Input in Linux Shell Scripting

0
When a script gets one or more inputs from the user, most of the time it expects the following: A specific number inputs. Inputs of specific...
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...
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 (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...
Linux Shell Scripting (14)

Learn about Text Processing Tools in Linux Shell Scripting

1
The capability to manipulate text strings is of great importance. In our everyday’s work, we need to search text, extract parts of text, and...