As a Linux system administrator, I type sudo dozens of times every day. It allows us to work as regular users most of the time, only elevating pr…
Posts for: #JavaScript
Linux stat Command Deep Dive: Complete Metadata Extraction from Inodes to Timestamps
The stat command is one of the most underrated tools in Linux. Most people rely on ls -l to check file information, but stat reveals the unde…
Deep Dive into Linux SSH: From Protocol to Practice
SSH (Secure Shell) is essential for every sysadmin and developer, yet many only know basic connection commands. Let’s explore the technical details…
Linux split Command Deep Dive: From File Segmentation to Parallel Processing
Recently, while processing a 10GB log file, my text editor froze instantly. Using head and tail only showed the beginning and end—analyzing the…
Linux sort Command: From Sorting Algorithms to Performance Optimization
Sorting is fundamental to data processing, and Linux’s sort command is the Swiss Army knife for command-line sorting. You might use it daily, but…
Linux seq Command Deep Dive: From Number Sequences to Batch Task Automation
Published: May 9, 2026 11:50
sed Stream Editor: From Basic to Advanced Text Processing
When I started with Linux, I thought sed was just a simple find-and-replace tool: sed 's/old/new/g' file.txt. But as I gained experience, I rea…
Linux screen Command Deep Dive: Terminal Multiplexing from Source to Practice
If you’ve ever lost a long-running process because your SSH connection dropped, you know the pain. Today, let’s talk about screen — the terminal …
Deep Dive into Linux rm Command: From unlink System Call to Safe Deletion Practices
rm is probably the most loved and feared command in Linux. Loved because deleting files takes just a few keystrokes; feared because the legend of…
Linux pwd Command: From System Calls to Symbolic Link Handling
The pwd command might be one of the simplest yet most frequently used Linux commands. But beneath its simplicity lies interesting implementation de…