Jayant Verma

Jayant Verma

Create a File in Linux – 5 Easy Ways

CREATE FILE

When working on Linux, knowing how to create files from the terminal could come in handy. There are multiple ways to create a file in Linux. Let’s go over these one by one. How can you create a file in…

How to List all Users in Ubuntu?

LIST ALL USERS

There can be multiple users on a Linux system. If you want to list all users in Ubuntu, the information is present in the /etc/passwd file. This file stores the list of users on the system along with important information…

Install Docker on Debian in Just 4 Easy Steps

DOCKER ON DEBIAN

This tutorial will briefly cover the exact steps to install docker on Debian. Docker is a service that runs software in virtually isolated containers. Containers are a standardized unit of software that allows developers to isolate their apps from their…

How to Merge Multiple Files in Linux?

merging files in Linux

Let’s look at the different ways in which you can merge multiple files in Linux. We’ll majorly use the cat command for this purpose. So let us begin! For the rest of this tutorial we will consider three files. Let’s…

How to Use the awk Command for Text Manipulation?

awk command

The awk command is fundamentally a scripting language and a powerful text manipulation tool in Linux. It is named after its founders Alfred Aho, Peter Weinberger, and Brian Kernighan. Awk is popular because of its ability to process text (strings)…

How to Use the sed Command for Editing Text?

sed command in linux

Sed command is a text editor tool used for editing files, which is command line-based. But what sed is really used for is something called ‘Steam Editing.’ Also! ‘S’ in Sed stands for Stream-oriented, and the ‘ed’ part is for…