Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 483 Bytes

catch.md

File metadata and controls

23 lines (16 loc) · 483 Bytes

Here is a typo. We will catch and ignore the error:

echoo "xxx"

Here is the correct one:

echo "xxx"

Here is another command with typo, but we won't catch the error this time, and it will interrupt the execution.

echoo "This command will interrupt the execution"

Here is another correct command.It won't be executed because the above error have already interrupted the execution.

echo "This command won't be executed"