When managing servers, quickly assessing system health is essential. The uptime command outputs just one line, but it contains critical informati…
Posts for: #Format
Linux uname Command: The Swiss Army Knife for System Information
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…
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 netstat Command Deep Dive: From Network Connections to Port Monitoring
When troubleshooting server network issues recently, I noticed many developers have a superficial understanding of the netstat command. Today, le…
Linux ls Command Deep Dive: From Directory Traversal to Colorized Output
ls is one of the most frequently used Linux commands, yet most users never go beyond ls -la. Let’s explore how ls actually works under the hood.
Linux file Command: Deep Dive into File Type Detection Magic
Published: May 13, 2026, 06:19
Linux diff Command: From Line-by-Line Comparison to Unified Format
During a recent code review, I needed to compare two config files. Staring at them side-by-side was painful. Then I remembered diff — a tool I’d …
JSON to Table: From Data Structure to Interactive Tables
When working with JSON data, staring at raw structures can be overwhelming—especially when nested objects and arrays are mixed together. Converting…
JSON/XML/YAML Format Converter: From Parsers to Data Structure Mapping
Recently I worked on a config file conversion requirement that needed bidirectional conversion between JSON, XML, and YAML formats. I thought it wo…