Grep command in Linux
In this tutorial, we are going to learn how to use grep command in Linux. We use grep command to search within files or output of text. Grep command can also be combined with other commands with the use of…
In this tutorial, we are going to learn how to use grep command in Linux. We use grep command to search within files or output of text. Grep command can also be combined with other commands with the use of…
Wondering how to use the diff command in Linux and want to know what the Linux diff command is? This article will help you understand the command well and answer the question about the usage of the diff command. The…
In this tutorial, we’ll go over the chown command in Linux. The Linux operating system is designed to be secure and allows file access to only those users who have the required permissions. Each file has specific owners and only…
In this tutorial, we are going to discuss how to use the cut command in Linux. The cut command is used in Linux or Unix based operating systems. “Cut” simply means to snip a portion from a particular thing. Similarly…
In this tutorial, we will learn how to use the echo command in Linux. You might have heard an echo in science where it is considered as repeated sound. Here, it is totally different. Don’t mess Linux commands with science’s…
The time command in Linux is used to determine how long a given command will take to run. We use the time command to test the performance of scripts and commands. What’s the Need for the time Command in Linux?…
In this tutorial, we’ll be going over the Linux watch command and how we can utilize it in our Linux administration work. Essentially, the watch command is a utility that allows us to continually execute a command at specific intervals…
Most of the Linux Distributions don’t allow ‘root’ user also known as superuser by default as a security measure to prevent accidental or intentional changes that could harm the system. Especially in an enterprise setup, this would mean disaster. Instead,…
In this tutorial, we are going to discuss how to change the user password in Linux. The instructions given below can work on any Linux distribution. The passwd command is used to update or change the user’s authentication token. There…
The Linux which command is used to identify the path of executable files. The path is identified by searching it in the path environment variables. Syntax of Linux which is as follows: What is the PATH variable? PATH is an…