Satish Kumar has Published 1040 Articles

Post Office Protocol, Version 3 (POP3)

Satish Kumar

Satish Kumar

Updated on 09-Jan-2023 14:46:57

4K+ Views

What is POP3 (Post Office Protocol 3)? Post Office Protocol version 3 (POP3) is a standard protocol used by email clients to retrieve email messages from a mail server. It is a simple, text-based protocol that allows a client to connect to a server, retrieve email messages, and mark them ... Read More

Aborting a shell script on any command fails

Satish Kumar

Satish Kumar

Updated on 03-Jan-2023 11:10:33

11K+ Views

Overview By utilizing Bash scripts, we can have access to a powerful programming language. Writing such scripts is an efficient way to run several commands one after the other. Even if one command fails, the others will still be executed. We’ll learn how we can add some safeguards so that ... Read More

Working with Zip Command in Linux

Satish Kumar

Satish Kumar

Updated on 03-Jan-2023 11:09:03

2K+ Views

Overview The zip command is one of the most useful tools available on any operating system. It allows you to compress multiple files into a single compressed archive file. You can then decompress that archive file using the unzip command. This tutorial will show you how to use the zip ... Read More

Killing all members of a process group in Linux

Satish Kumar

Satish Kumar

Updated on 03-Jan-2023 11:06:59

880 Views

Overview As a Linux system administrator, dealing with processes is a frequent task. Generally, they're easy to stop, however in certain cases - when there are large numbers of processes within the same groups - additional steps might be needed. We’ll take a closer look at how to manage processes ... Read More

Create a file of certain size in Linux

Satish Kumar

Satish Kumar

Updated on 03-Jan-2023 11:05:00

17K+ Views

Overview When using Linux, we often perform various operations on our own personal data. One common operation is to create an empty file of a specific size. There are many ways or command to achive this, here we’ll cover some of these methods − “dd” command dd − The dd ... Read More

Https connection using curl on Linux

Satish Kumar

Satish Kumar

Updated on 03-Jan-2023 11:03:08

5K+ Views

Overview curl is a command line tool that supports many different types of websites including https sites. It can be used to connect to any website, but it's most commonly used for connecting to web servers and retrieving data from them. In this tutorial we will learn how to use ... Read More

How to add a Column of Numbers in Bash?

Satish Kumar

Satish Kumar

Updated on 03-Jan-2023 11:00:17

1K+ Views

Overview This article examines how to total up numeric columns of data in a bash shell, looking at the bash tools available for the task and comparing their speed. Using The awk Tool We’ll start by calculating the sum of the values in a particular column using the awk (awk) ... Read More

Extracting a substring using Linux bash

Satish Kumar

Satish Kumar

Updated on 03-Jan-2023 10:58:15

5K+ Views

Overview Extracting a substring from a string is a basic and common operation of text processing in Linux. We're looking at different ways to extract substrings from strings using the Linux command line here. Extracting an Index-Based Substring Let’s first take a quick glance at how to extract index-based substring ... Read More

Change the Install directory with make install

Satish Kumar

Satish Kumar

Updated on 03-Jan-2023 10:55:46

3K+ Views

Overview Generally, packages are installed in the default directory. Depending on the system's Linux version, it might be necessary to use a different directory such as /usr or /user/local. We might also want to install a particular software application for a single user rather than for the entire system. We'll ... Read More

Move all files except one on Linux

Satish Kumar

Satish Kumar

Updated on 03-Jan-2023 10:52:58

3K+ Views

Introduction If you're working with Linux, there might be times when you'll want to copy several files at once and then remove some of them later. We're going to take a closer at several different methods for achieving such results. Renaming The Unwanted File You can rename the unwanted file ... Read More

Advertisements