How to Skip Part of a Script While Testing
The shell has no 'goto' statement. So you need to comment
out the part you want to skip or surround it with
if false ; then
...
fi
Additionally you can use the 'break' builtin to finish loops
earlier than they would normally finish.