전체 스크립트를 죽이지 않고 조건이 참인 경우 함수를 종료하는 방법은 함수를 호출하기 전으로 돌아갑니다.
예
# 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
}
set -e
스크립트와의 상단에 설정return 1
0 이외 또는 기타 번호, 전체 스크립트가 종료됩니다.