Searching .i files
27-Feb-94 20:39:14
Sb: #39286-Searching .i files
Fm: Jim Butterfield 73624,14
To: New member 73016,27
> is there a tool that can scan all my includes looking for the > right one?
An interesting feature of the SEARCH command is that it recognizes
pattern-matched PATHS, not just file names. So you can use something like:
SEARCH INCLUDE:#?/#?.i MyFunction
(adjust the path to reflect your setup)
… and it will search ALL subdirectories, files ending in .i, for the
desired string. –Jim