StackOverflow 文档 Bash 教程 管道 管道 Created: November-22, 2018 管道是由一个控制操作符|或|&( 源 ) 分隔的一系列简单命令。 |将 command1 的输出连接到 command2 的输入。 |& 将 command1 的标准输出和标准误差连接到 command2 的标准输入。 运用