You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The following search should match, but did not because of the '#' character: perl grep -F '#include' a.c
* This was because quotemeta() was escaping it as \# which was then expanded between single quotes
* The $matcher closure can refer to patterns list directly, which removes the need for pattern strings to be expanded with quotes
* This version is easier to follow because duplicate statements are not added to the closure code if many patterns are used
0 commit comments