I have a function ff
in 1.sh
with exit status 33
.
When I call this function in 2.sh
and call function ff
and if the exit status is 33
, then my 2.sh
is broken.
How can I do a continue step?
like this:
if [ exit_of_ff -ne 0 ]
then
continue
fi