All Downloads are FREE. Search and download functionalities are using the official Maven repository.

help.end-if.txt Maven / Gradle / Ivy

There is a newer version: 27.0.0.Beta2
Show newest version
SYNOPSIS

    end-if [--help]   

DESCRIPTION

    Ends the if block (if 'else' is not specified) or the else block
    if it's specified and triggers the execution of the if-else
    control flow by:
    - first executing the command line from the if statement;
    - evaluating its response using the specified condition expression;
    - if the condition is met, execute the if batch, otherwise -
      execute the else batch if it was specified.

    Simple example of if-else control flow which changes
    system property's value named test to the opposite boolean
    value every time it is executed:
    
    if result.value==true of /system-property=test:read-resource
        /system-property=test:write-attribute(name=value,value=false)
    else
        /system-property=test:write-attribute(name=value,value=true)

ARGUMENTS

    --help        - prints this description.




© 2015 - 2024 Weber Informatics LLC | Privacy Policy