Skip to the content.
cs-notes
brief computer science notes
View on GitHub
Home
/
cs-notes
/
Operating System
/
Linux
/
Commands
/
Concepts
/
管道命令
将前一个命令的输出(stdout)作为下一个命令的(stdin)
必须能处理 stdin 的命令才是管道命令
是例:less,more,head,tail…
否例:ls,cp,mv…