linux – 如何将输出重定向到多个日志文件
作者:互联网
如何将标准输出重定向到多个日志文件?
以下不起作用:
some_command 1> output_log_1 output_log_2 2>&1
解决方法:
见男士T恤:
NAME: tee – read from standard input and write to standard output and files
SYNOPSIS: tee [OPTION]… [FILE]…
因此:
echo test | tee file1 file2 file3
标签:linux,io-redirection,tee 来源: https://codeday.me/bug/20190808/1622859.html