[Chicago-talk] Extracting the class hierarchy from the source tree?

Mike Fragassi frag at ripco.com
Wed Nov 10 10:37:14 CST 2004


Try:

  findstr /s "use new" *.pm

/s will recurse into subdirs, and "use new" equals /(use|new)/.
To make the spaces in the search string count, prefix it with '/c:'.

-- Mike F.

On Wed, 10 Nov 2004, Elizabeth Cortell wrote:

> Hello all,
>
> I'm inspecting someone else's code. It's in Visual Source Safe and I'm working at a Windows XP box.
>
>
> I'd like to look over the namespace.  If I were on Unix, I'd run something like
>
> find source -name "*.pm" -print | egrep " (use) | (new)"
>
> But what's a quick way to do this on Windows XP?
>
> Liz
>
> _______________________________________________
> Chicago-talk mailing list
> Chicago-talk at mail.pm.org
> http://mail.pm.org/mailman/listinfo/chicago-talk
>


More information about the Chicago-talk mailing list