Can lint recursively scan sub directories for the source code? For example, I want to use: lint Z:\*.* and have it then recurs down our directory structure and parse all our source files?
dir command (or ls on UNIX) such as: dir /s/b *.cpp > project.lntYou can then use project.lnt as input to lint. You should make sure that all those files are in the same project.