我使用下面的Bash脚本更新OSX上的软件,并在必要时重新启动。
奇怪的是,当找不到需要的软件更新时,运行脚本的输出和日志都不包含部分输出。
例如,如果我在不需要更新的计算机上运行以下命令,我会看到:
% softwareupdate -i -a
Software Update Tool
Copyright 2002-2012 Apple Inc.
Finding available software
No updates are available.
最后一行“没有更新可用”是未记录到以下脚本的日志文件中的内容:
#!/bin/bash
PATH=/bin:/usr/bin:/sbin:/usr/sbin export PATH
SWLOG=/var/log/swupdate.log
(
echo "################ SoftwareUpdate Script Beginning at $(date) ################"
echo "Script Name: $(basename -- "$0") "
softwareupdate -l | grep -i "restart"
if [[ $? -eq 0 ]] #reboot will be needed
then
echo "Software update requiring reboot is needed"
echo "Starting..."
softwareupdate -i -a
echo "################ Rebooting at $(date) ################"
reboot
else
echo "No reboot needed. Updates will be applied if needed..."
softwareupdate -i -a
echo "################ SoftwareUpdate Script Ending at $(date) ################"
echo
fi
exit 0
) | tee -a $SWLOG
相反,日志显示:
################ SoftwareUpdate Script Beginning at Sat May 21 19:37:44 PDT 2016 ################
Script Name: swupdate.sh
No reboot needed. Updates will be applied if needed...
Software Update Tool
Copyright 2002-2012 Apple Inc.
Finding available software
################ SoftwareUpdate Script Ending at Sat May 21 19:38:33 PDT 2016 ################
并省略“没有可用的更新。”
任何想法,建议为什么会发生这种情况?我想记录这个重要的细节。
先谢谢,Dan
答案 0 :(得分:1)
由于您将输出传递给tee
命令,因此只传递标准输出。标准错误被忽略。看起来softwareupdate
发送了"没有可用的更新"部分标准错误。因此,将标准错误重定向到标准输出将解决您的问题。
softwareupdate -i -a 2>&1
另一种方法是使用|&
(2>&1 |
的简写)而不是|
,这会将标准错误重定向到标准输出,然后将输出传递给tee
命令
(your_commands) |& tee -a $SWLOG