Bamdeb Ghosh has Published 33 Articles

Introduction to File Locking in Linux

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 29-Mar-2023 13:58:03

2K+ Views

Introduction File locking is a mechanism used to restrict access to a file to only one process or user at a time. It is essential in multi-user systems to avoid conflicts when multiple processes try to access the same file simultaneously. In Linux, file locking is implemented through the use ... Read More

Working with the AWS S3 CLI in Linux

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 29-Mar-2023 11:53:31

691 Views

Introduction AWS S3 (Simple Storage Service) is a reliable and scalable object storage service that is commonly used for storing and retrieving data across various industries. AWS S3 CLI (Command Line Interface) is a powerful tool that provides developers and system administrators with a command-line interface to interact with S3. ... Read More

Viewing Files in Linux Using cat, more, and less

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 29-Mar-2023 11:51:41

739 Views

Introduction Sometime in Linux, we do not want to open a file using vi or vim to see the content of file. Instead, we can use other Linux commands like ‘cat’, ‘more’ and ‘less’. Depending on the user requirement, either cat or more or less command can be used. Though ... Read More

Pipes and Redirection in Linux

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 29-Mar-2023 11:40:55

2K+ Views

Introduction Pipes and redirection are two different kinds of mechanisms used in Linux. Sometimes, we need the output of a command to be passed as input of another command and do some operation. There we use the pipe operator. The operator is “|”. It’s found on top of the “Enter” ... Read More

Modify Files in Linux using vi, nano or emacs

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 29-Mar-2023 11:38:17

356 Views

Introduction Linux users frequently utilize Vi, Nano, and Emacs as their preferred text editors. Vi is a standard editor that is revered for its advanced functionalities and efficiency. Conversely, Nano is a straightforward editor that boasts a user-friendly interface and is easily learned by novices. Emacs is a powerful and ... Read More

Introduction to File MIME Types on Linux

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 29-Mar-2023 11:36:40

3K+ Views

Introduction MIME types are a crucial aspect of Linux file management, as they enable the operating system to identify the file format and determine the appropriate program for opening the file. Understanding MIME types can be beneficial, especially when dealing with various file formats on Linux systems. This article provides ... Read More

How to Use Command Line Arguments in a Bash Script

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 29-Mar-2023 11:20:51

5K+ Views

Introduction In general, there are many ways to pass input to programming or scripting languages and sometimes there is a need to pass input from the command line instead of input from the code. Like any other programming or scripting language bash scripting also support the command-line argument. In this ... Read More

How do I Zip/Unzip on the Unix Command Line

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 29-Mar-2023 11:18:50

272 Views

Introduction Zipping and unzipping a file is a very common practice in Linux. We need to zip many files into one file for the following reasons. It saves disk space in the system. We can keep multiple files inside one file. This also helps to copy this zipped file ... Read More

Guide to Useful File Manipulation Commands

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 29-Mar-2023 11:15:00

1K+ Views

Introduction File manipulation commands are some of the most commonly used and important tools available to users. Whether you're a software developer, data analyst, or just an everyday computer user, file manipulation commands allow you to quickly and easily navigate, manipulate, and manage files on your system. Let’s explore some ... Read More

Guide to the Linux read Command

Bamdeb Ghosh

Bamdeb Ghosh

Updated on 29-Mar-2023 11:11:53

3K+ Views

Introduction As we work with the Linux command line, we often need to interact with input from the user or from files. This is where the "read" command comes in handy. It is a simple yet powerful command that can be used in a variety of ways to process input ... Read More

Advertisements