对于某些命令,在终端中使用标准输出中的一些颜色进行打印,例如:mvn help:help -Ddetail=trueAny Linux command执行linux/tools命令和其他脚本)
因此,如果在终端(stdout)中打印某些颜色,则根据每个命令/工具,这是默认行为。"linux_command" | tee [-a] "/some/pat
find /var/www/html -type f |xargs md5sum | tee /opt/figerprint.db.ori
效果很好。现在,我想将tee命令的所有stdout重定向到/dev/null。find /var/www/html -type f |xargs md5sum | tee /opt/figerprint.db.ori 1>/dev