10 Ways to Exit Vim Editor

Let’s talk about the different ways to exit vim editor here. As you would know Vim is a Linux utility for editing text. The special aspect of only using the keyboard to edit makes it a unique editor. With this…
Let’s talk about the different ways to exit vim editor here. As you would know Vim is a Linux utility for editing text. The special aspect of only using the keyboard to edit makes it a unique editor. With this…
If we are interested in finding out our computer’s hardware details, “dmidecode command” is the go-to Linux command. Hardware information ranges from BIOS (Basic Input/Output System) information to the sizes of the memory devices. When we run dmidecode on the…
There are numerous ways to count the number of lines in a file in Linux. We’ll go over some of the quickest ways to achieve this task and get the line count. Ways to Count the Number of Lines in…
Shells are an important part of any Linux user session. We are provided several different types of shells on Linux to accomplish tasks. Each shell has its unique properties. Hence, there are many instances where one shell is better than…
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)…
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…