记录_linux_函数退出_而不退出整个脚本

check_one() {
num=`df -h | wc -l `
if [ $num -gt 5 ];
        then
        return 1
fi
echo '1111'
}

check_two() {
num=`df -h | wc -l `
if [ $num -gt 5 ];
        then
        return 1
fi
echo '2222'
}

check_one
check_two
# return 退出当前函数 而不是整个脚本

你可能感兴趣的:(Shell)