JunosE 11.3.x System Basics Configuration Guide
472
(Optional) An else expression and any associated group of expressions
An endif expression to indicate the end of the if structure
The if expression and any optional elseif expressions must include a lone environment
value command, a local variable, a literal, or some operation using one or more operators.
Only one of the groups of expressions within the if construct is executed, according to
the following scheme:
The if expression is evaluated. If the result is true (nonzero), the associated expression
1.
group is executed.
If the result is false (zero), then the first elseif expression, if present, is evaluated. If
2.
the result is true (nonzero), the associated expression group is executed.
If the result of evaluating the first elseif expression is false (zero), the next elseif
3.
expression is evaluated, if present. If the result is true (nonzero), the associated
expression group is executed.
If all elseif expressions evaluate to false (zero) or if no elseif expressions are present,
then the else expression group—if present—is executed.
This evaluation process continues until an expression evaluates to nonzero. If there
4.
is no nonzero evaluation, then no expression group is executed.
You can write an empty expression group so that no action is performed if this group is
selected for execution. You can nest if structures within other if structures or while
structures.
The following sample macro demonstrates various if structures:
<#
if_examples
<# //---------------------------------------- #>
<# if 1 #>
! This is always output because any nonzero value is " true."
<# endif #>
<# if 0 #>
! This is never output because a value of zero is " false."
<# endif #>
<# // Here's an example with elseif and else. #>
<# color := env.getline("What is your favorite color? ") #>
<# if color = "red" #>
! Red is my favorite color, too.
<# elseif color = "pink" #>
! Pink is a lot like red.
<# elseif color = "black" #>
! Black is just a very, very, very dark shade of red.
<# else #>
! Oh.
That's nice.
<# endif #>
<# // Here's a nested if example. #>
<# sure := env.getline("Are you sure that " $ color $ " is your favorite color?
") #>
<# if substr(sure, 0, 1) = 'y' || substr(sure, 0, 1) = 'Y' #>
<# if color != "black" && color != "white";
#>
Copyright © 2010, Juniper Networks, Inc.
Need help?
Do you have a question about the JUNOSE SOFTWARE FOR E SERIES 11.3.X - SYSTEM BASICS CONFIGURATION GUIDE 2010-10-04 and is the answer not in the manual?