3
bashで関数を終了する方法
スクリプト全体を強制終了せずに条件がtrueの場合に関数を終了するには、関数を呼び出す前に戻ってください。 例 # 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 }