📜  linux 中的管道命令 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:49.430000             🧑  作者: Mango

代码示例1
Pipe is used to combine two or more commands, and in this, 
the output of one command acts as input to another command

example:
 grep command has searched the file ‘sample’, for the string ‘Apple’
 cat sample | grep Apple