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.
我正在制作一个脚本,每次完成某件事时,我都想写入我的自定义 .log 文件。我怎么做?
最后..我只想用 Bash 阅读它,..我只使用 cat 吗?
谢谢。
我一直使用的最简单的语法是2>&1 | tee -a file_name.log.
2>&1 | tee -a file_name.log
该语法可以在命令或文件执行之后使用。例如
find . -type f 2>&1 | tee -a file_name.log
或者
./test.sh 2>&1 | tee -a file_name.log
只是cat <log message here> >> custom.log。
cat <log message here> >> custom.log
该>>方法添加到文件的底部,而不是>删除文件的内容然后写入消息。
>>
>