VF inconsistency between operators when quoted
Posted: 27 May 2022 07:38
I am not sure if you want to classify this as a bug, but I noticed an inconsistency between | and OR when using quoted VF's, here is a demo script,
AND may be affected too, I didn't test.
Code: Select all
goto <xypath>;
filter '"xycopy.exe" | "xyplorer.exe"';
msg "notice filter works";
filter '"xycopy.exe" OR "xyplorer.exe"';
msg "notice filter doesn't work";
filter '"caption" "xycopy.exe" OR "xyplorer.exe"';
msg "notice filter works";