Satish Kumar has Published 1032 Articles

How to Randomize Lines in a File in Linux

Satish Kumar

Satish Kumar

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

3K+ Views

In Linux, it is often useful to randomize lines of a file. This can be helpful when working with large datasets or when performing certain operations that require lines of a file to be in a random order. In this article, we will discuss different ways to randomize lines in ... Read More

Introduction to Bash Array in Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:29:24

1K+ Views

Introduction Bash is a popular command-line shell used in Linux and other Unix-based operating systems. One of powerful features of Bash is its support for arrays. An array is a collection of values that can be accessed using an index. In this article, we will discuss basics of Bash arrays ... Read More

Using docker-compose With Private Repositories

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:28:00

6K+ Views

Introduction Docker Compose is a tool for defining and running multi-container Docker applications. It allows developers to define their application stack as a YAML file, making it easy to spin up complex environments with just a few commands. However, using private repositories with Docker Compose can be tricky. In this ... Read More

Understanding Time Command in Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:27:06

575 Views

As a Linux user, you must have come across time command. It is a simple yet powerful command that allows you to measure execution time of a process. Whether you are a developer, system administrator, or just a curious user, understanding how time command works is essential for optimizing your ... Read More

Introduction to fzf command in Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:26:09

494 Views

Introduction Linux command-line interface is one of most powerful tools available to system administrators and developers for managing and working with their systems. One of challenges with CLI is that it requires memorizing many commands and options. However, there are tools that make it easier to navigate command line, such ... Read More

Linux source Command

Satish Kumar

Satish Kumar

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

29K+ Views

Introduction The Linux source command is an essential tool for Linux users and administrators. It is used to execute a script file in current shell environment, and it allows you to modify current shell environment in same way that you would if you had typed commands manually. In this article, ... Read More

Process Memory Management in Linux

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:23:51

9K+ Views

Process memory management is a crucial aspect of any operating system. In Linux, memory management system is designed to efficiently manage memory usage, allowing processes to access and use memory they require while preventing them from accessing memory they do not own. In this article, we will discuss process memory ... Read More

Linux Job Control &, disown, and nohup

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:23:28

776 Views

Introduction Linux is an open-source operating system that is widely used in industry. One of most notable features of Linux is its command-line interface (CLI), which provides a lot of flexibility and power to users. When working in command line, it is common to run multiple commands concurrently. However, sometimes, ... Read More

Read Random Line From a File in Linux

Satish Kumar

Satish Kumar

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

2K+ Views

In Linux, reading a random line from a file can be a useful task in various scenarios. For example, when you want to select a random word from a dictionary or randomly select a line from a log file for analysis purposes. There are several ways to read a random ... Read More

How to Call an External Program Using awk

Satish Kumar

Satish Kumar

Updated on 24-Mar-2023 15:20:03

873 Views

Introduction Awk is a powerful text processing tool that can be used to automate various tasks such as data manipulation, filtering, and reporting. One of interesting features of awk is its ability to call external programs from within script. In this article, we will explore how to call an ... Read More

Advertisements