Satish Kumar has Published 1032 Articles

How to Join Multiple Lines Into One on Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 16:04:14

11K+ Views

Introduction When working with Linux or any command-line interface, you may come across situations where you need to combine multiple lines of text into a single line. This can be helpful for formatting or readability purposes, and it can also be necessary for certain scripting tasks. In this article, we ... Read More

Print Linux Directory Structure as a Tree

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 16:02:36

3K+ Views

Introduction Linux is an open-source operating system that has gained a lot of popularity among developers and system administrators. It offers various powerful tools and commands to manage files, directories, and other resources on system. One such command that comes in handy is tree command, which helps in displaying directory ... Read More

How to Use cd Command in Bash Scripts

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:59:40

16K+ Views

The cd command is one of most fundamental commands in Bash shell. It is used to change current working directory to a specified location. This command is particularly useful when navigating through file system, especially in situations where you need to access files or directories in a different location. In ... Read More

Guide to vi Editor on Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:58:36

1K+ Views

Introduction The vi editor is one of most popular text editors on Linux. It is a command-line-based editor that comes pre-installed on most Linux distributions. Although it may seem daunting to new users, it is a powerful and efficient tool for editing text files. In this guide, we will cover ... Read More

Preventing Bash Fork Bombs in Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:57:59

809 Views

Introduction Bash Fork Bomb is a type of denial of service (DoS) attack that can crash or freeze a Linux system by overwhelming its resources. attack uses a malicious script that creates a large number of child processes, causing system to run out of available resources, such as memory or ... Read More

Decompressing Files in Linux with Gunzip

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:45:39

716 Views

In the world of Linux, file compression is a common practice to reduce file sizes and save disk space. There are many compression algorithms available, and each has its own strengths and weaknesses. One of the most popular compression algorithms in Linux is gzip. In this article, we will explore ... Read More

Linux man Command

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:45:13

2K+ Views

Introduction In world of Linux, man command is an essential tool for anyone who is serious about using command line interface. It stands for "manual", and it is a built-in help system that provides users with detailed information on how to use various Linux commands. In this article, we will ... Read More

How to Count Number of Files in Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:44:32

27K+ Views

Introduction Linux is a popular open-source operating system used by millions of users worldwide. One of most common tasks in Linux is to count number of files in a directory. Counting number of files is an essential operation when dealing with large data sets and is also useful when cleaning ... Read More

Ifconfig Command in Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:43:35

718 Views

Introduction ifconfig command is an important tool used in Linux operating system for network administration. It is a command line utility that is used to configure network interfaces and display network interface parameters. In this article, we will discuss ifconfig command in detail, including its syntax, options, and usage. Syntax ... Read More

Remove Blank Lines From a File in Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:43:02

15K+ Views

Introduction When working with files in Linux, it is common to come across files that contain blank lines. These blank lines can make it difficult to read file, especially when dealing with large files. In this article, we will discuss different methods to remove blank lines from a file in ... Read More

Advertisements