bash icon indicating copy to clipboard operation
bash copied to clipboard

Extend Statement with IfThenElif construct

Open cgohla opened this issue 4 years ago • 0 comments

We add a constructor IfThenElif to the Statement type to enable rendering bash expressions of the form

 if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi

Note that this is different from case ... esac, because the later only allows matching against patterns, not arbitrary conditions.

cgohla avatar Mar 28 '22 22:03 cgohla