Whether you're tweaking config files, updating scripts, or wrangling logs on a remote server, knowing how to modify data efficiently is essential. Enter vi and vim—powerful, lightning-fast text editors built for the command line. In this blog, we'll ...
Are you a beginner looking to level up your DevOps and cloud skills by deploying a Node.js app in Docker on an AWS EC2 instance — but using only vi editor and no SSH key pair? This hands-on tutorial walks you through everything from launching your EC...
The vim editor (Vi IMproved) is a powerful, flexible text editor commonly used in Linux and Unix systems. It’s widely used by system administrators, developers, and DevOps engineers because it's lightweight and available by default on most Unix syste...
I/O Redirection I/O redirection in Linux refers to the process of changing the input or output of a command or program. In Unix-like/Linux operating systems, I/O redirection is commonly used in the command line to manage input from and output to fil...
Vi editor stands out from other text editors due to its unique approach to text manipulation. It operates in different modes, each serving a specific purpose: Normal Mode: This is the default mode where you can navigate, manipulate text, and execute...
What is vi? Vi is a short form for visual instrument. It is a screen-oriented text editor in the Linux family. It is referred to as a screen-oriented text editor because it features the ability to modify any visible text on the screen by moving the c...
Introduction Imagine you have a magic wand that lets you edit text in a super cool and powerful way. Well, that's kind of what Vi and Vim editors are! They are special tools that help you modify text files, like documents or code, using commands in a...
What is a VI editor? Ah, the venerable Vi editor - the tool that strikes fear into the hearts of newbies and earns the respect of experienced command-line warriors. VI editor is a powerful command-line text editor used in Unix-based operating systems...
Using VI Editor for a beginner can be difficult, like writing content in the file and especially exiting it. Here is a blog that can help you as a beginner to use VI Editor. Let us create a file example.txt. Now, suppose you want to write something i...
Vi is a screen-oriented text editor created for the Unix operating system. Basic Vi commands There are two modes when in Vi Command mode( press ":<command>" ) Insert mode( press "i" then Esc to enter command mode) To start ; To use vi on a file, ...