我希望执行不同的命令并在之后检查返回代码,然后再转到脚本中的下一步。同时,我还希望使用 tee 命令将执行命令的输出记录到文件中。例子:
#set non-existing folder
local_path="~/njn"
log_path_file="test.log"
cmd="ls -l ${local_path} | tee -a ${log_path_file}";
eval ${cmd}
returncode=$?
echo "execution result: ${returncode}" | tee -a ${log_path_file};
if [ ${returncode} -eq 0 ]; then
echo "success" | tee -a ${log_path_file}
else
echo "not success" | tee -a ${log_path_file}
fi
returncode 是 0 应该是 > 0
我希望 returncode 变量具有已执行命令的实际返回(在本例中为 ls -l 命令。
我已经看到有一个解决方案使用文件将命令的输出写入其中,然后从中读取返回代码(此处),但我正在寻找更优雅的解决方案。