我正在分析一个shell脚本,我对下面的一段代码感到有些困惑。
有人能解释一下 return; 在这种情况下做了什么?
if [ -f "$BYPASS_EXISTING_NETWORK_TEST_FILE" ]; then
dloginfo "Skipping existing network test; mandated by configuration."
# Consume the file.
rm -f "$BYPASS_EXISTING_NETWORK_TEST_FILE"
return;
fi
答案 0 :(得分:1)
return
将从函数中返回一个值。
来自help return