I'm using the version of sgrep distributed with VS 2023 and am encountering an issue when using the -wc switch to include multiple file name masks for searching against. It would appear that when this option is enabled, the searching behaves in a manner that would be consistent with the -w (Match whole word) being enabled as well -- this is not what I desire
failing example: sgrep -i -t -pc jojo -wc dbo.Test* dbo.RunTest*
Text that looks like "test_jojo" will not be matched, but if the command is changed to use individual sgrep invocations for each wildcard mask, the match will be found...
passing example: sgrep -i -t -pc jojo dbo.Test*
Don't know when this behavior started as this is really the first time I've attempted to use the -wc switch...
Thanks for your help.