简明Linux命令行笔记:tee

把标准输入复制到标准输出和一个或多个文件中

tee [options] file-list

 

参数

file-list 是用于接收tee输出的文件路径列表,如果file-list不存在,就创建它

 

选项

-a            追加数据给制定的文件,而不是覆盖

-i             忽略中断信号

 

示例

tee

$ tee a.txt
hello world
hello world
$ cat a.txt 
hello world

创建文件并写入数据,此处用法与cat > file一样,但除了写进数据,tee还会打印出来

ctrl+D退出

 

tee -a

$ tee -a a.txt 
this is the last time
this is the last time
$ cat a.txt 
hello world
this is the last time

追加数据到文件,并打印到标准输出,此处用法与cat >> file一样

 

 


你可能感兴趣的:(简明Linux命令行笔记:tee)