tee 命令
这会将所有输出同时显示在屏幕上并追加到日志文件中。
bash your_script.sh 2>&1 | tee -a log_file.txt
其他方法不可用
只使用 >> 不会将除了print之外的所有保存
bash your_script.sh >> log_file.txt
>> 和 2>&1一起只会保存在日志中,现在的屏幕上什么都没有
bash your_script.sh >> log_file.txt 2>&1
这会将所有输出同时显示在屏幕上并追加到日志文件中。
bash your_script.sh 2>&1 | tee -a log_file.txt
只使用 >> 不会将除了print之外的所有保存
bash your_script.sh >> log_file.txt
>> 和 2>&1一起只会保存在日志中,现在的屏幕上什么都没有
bash your_script.sh >> log_file.txt 2>&1