条件が真の場合、スクリプト全体を強制終了せずに関数を終了するにはどうすればよいでしょうか。関数を呼び出す前に戻るだけです。
例
# Start script
Do scripty stuff here
Ok now lets call FUNCT
FUNCT
Here is A to come back to
function FUNCT {
if [ blah is false ]; then
exit the function and go up to A
else
keep running the function
fi
}