linux终端保存为文本文件

1. 只保存一个命令的结果时候

ls>ls.txt 会覆盖文件原有内容

ls>>ls.txt 会添加到文件末尾

2. tee 命令

ls | tee ls.txt 会覆盖文件原有内容

ls | tee -a ls.txt 会添加到文件末尾

3. script 命令

所有内容打印到文件

script. -a typescript.txt

开始:script 

结束:exit

默认文件名 typescript.txt

你可能感兴趣的:(笔记)