• My Pages
  • Comments
  • Add Link
  • Subscribe
  • Subscribe User
  • Edit (GUI)
  • Edit (Text)
  • Rename Page
  • Copy Page
  • Load Page
  • Save Page
  • Delete Page
  • Attachments
  • Check Spelling
  • Diffs
  • Info
  • Revert to this revision
  • XML
  • Render as Docbook
  • Print View
  • Raw Text
  • Delete Cache
  • Like Pages
  • Local Site Map
  • Remove Spam
  • Package Pages
  • Sync Pages

    Revision 3 as of 2013-08-07 17:57:01

    Clear message

    Usage:

    stop

    Example:

    stop

    Allows you to stop a script at that line, so further processing of lines will not take place. Functions exactly the same as End.

    ifgoto (10 > 11) stopTest
    stop
    
    label stopTest
    echo "This line will never show up because 10 is not greater than 11, and the 'stop' above will stop the script"


    ScriptControlStructures