认识bash shell5--管道命令(pipe)之双向重导向
双向重导向tee:tee会同时将数据流分送到档案与屏幕;而输出到屏幕的,其实就是stdout。tee [-a] file
-a 以累加(append)的方式,将数据加入到file
例如:将last的输出存一份到last.list档案中:last | tee -a last.list |cut -d ‘ ’-f 1
将ls的数据存一份到~/homefile,同时屏幕也有输出讯息:ls -l /home |tee ~/homefile | more
页:
[1]