๐ŸŽ New User? Get 20% off your first purchase with code NEWUSER20 ยท โšก Instant download ยท ๐Ÿ”’ Secure checkout Register Now โ†’
Menu

Categories

Linux Beginner

What is Pipe?

A mechanism that connects the output of one command directly to the input of another, enabling command chaining.

Pipes (|) are fundamental to the Unix philosophy of small, composable tools. For example, cat log.txt | grep ERROR | wc -l counts error lines in a log file by chaining three simple commands.

Named pipes (FIFOs) are special files that allow communication between processes. Pipes enable powerful data processing workflows without creating intermediate files.

Related Terms

Sed
A stream editor for filtering and transforming text, commonly used for find-and-replace operations in files.
RAID
Redundant Array of Independent Disks โ€” a technology combining multiple physical drives into a single unit for performance, redundancy, or both.
ACL (Access Control List)
An extension to standard Linux file permissions that allows setting fine-grained access rights for specific users and groups beyond owner/group/other.
LVM (Logical Volume Manager)
A storage management framework that provides flexible disk management through abstract layers of physical and logical volumes.
Sysfs (/sys)
A virtual filesystem that exports information about kernel subsystems, hardware devices, and device drivers in a structured hierarchy.
Nohup
A command that runs a process immune to hangup signals, allowing it to continue after the terminal session ends.
View All Linux Terms โ†’