EMDIAG omsvfy 21.12.21 fails due to unescaped brace in regex
[oracle@oemapp bin]$ ./omsvfy version Unescaped left brace in regex is passed through in regex; marked by <-- HERE in m/_{ <-- HERE ___|ADD|CFG|INI|JAR|LOC|LST|ORA|PLAT|PROP|TXT|XML|___}$/ at /oem/mw/emdiag/bin/omsvfy.pl line 12642 (#1) (W regexp) The simple rule to remember, if you want to match a literal "{" character (U+007B LEFT CURLY BRACKET) in a regular expression pattern, is to escape each literal instance of it in some way. Generally easiest is to precede it with a backslash, like "\{" or enclose it in square brackets ("[{]"). If the pattern delimiters are also braces, any matching right brace ("}") should <snipped>
0