- 使用subshell来组合几个命令的输出整合起来实现IO重定向
(cat filea1;echo .bp;cat file2) |nroff (date;who;ls) >log
- 使用{}列表来组合几个命令的输出,实现整体的IO重定向
{ date who ls } > log
使用{}列表与sushell的不同在与,{}的所有操作都是基于当前shell来操作的.
时间: 2024-11-05 11:55:38
(cat filea1;echo .bp;cat file2) |nroff (date;who;ls) >log
{ date who ls } > log
使用{}列表与sushell的不同在与,{}的所有操作都是基于当前shell来操作的.