Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法同时将结果打印到命令提示符和文件?
例如:
echo a >test.log
输出“a”必须同时写入 test.log 文件和命令提示符。
该命令tee执行此操作,大多数 Linux 发行版默认安装此命令。
tee
tee - 从标准输入读取并写入标准输出和文件
用法:
echo abc | tee test.log
你想使用命令 tee
回显 |tee test.log
使用teewhich 从标准输入读取并写入标准输出和文件。