Example, given clispec:
set <string>;
and the assignment:
cli> set a|b
Expected result:
The value a|b is accepted
Actual result:
CLI syntax error in: "set a|b": Unknown command
If the vertical bar is escaped, it works fine:
cli> set "a|b"
cli> set a\|b
Example, given clispec:
set <string>;and the assignment:
cli> set a|bExpected result:
The value
a|bis acceptedActual result:
CLI syntax error in: "set a|b": Unknown commandIf the vertical bar is escaped, it works fine: