For example, A.sh
calls B.sh
inside the source code. The call is as the following in A.sh
#Inside A.sh
. ./B.sh
Now, some if..else
statement happened in B.sh
and decided to stop executing B.sh
. How to make it go back to A.sh
and keep executing the rest of the codes?
Thanks.