![]() |
![]() |
![]() |
Web File Dependencies Wondering if anybody know of a good tool to check dependencies throguh a web project. It would be nice to have something where you give it a list of files and it searches throguh the project directories to find any references to the files. This would help in eliminating errors due to not knowing a particular file was called from another file. In essence it's just a robust search tool with multiple search phrases. Any ideas?
ME
Not sure I get exactly what you are looking for, but Dreamweaver has a pretty good search/replace function.
Eric Debois
You can try "Living Doc" from:
Philip Dickerson
find . -type f -name "*.htm" -print | xargs egrep -i key /dev/null
Lou Vanek
Oh, if all you're looking for is any file that has any mention of a file from a list of files, you can also do this from a command prompt in Windows (NT, 2000, or XP) using the FINDSTR command:
Philip Dickerson
|