Skip

The Skip command controls the sequence of script command execution. It allows the command following the Skip command in the script to be skipped conditionally based on the return value of the preceding command.

This command has the following format:

Skip ReturnCodes  

Where the following argument is defined:

  • ReturnCodes is a comma-separated list of possible status codes returned by the execution of the preceding script command.

These values can include the following:

  • negation (!n) which means do not skip on this value
  • range (n:m) which means skip on any value in this range.

More Information