| Chris Allen 2007-08-21, 7:24 pm |
| On Aug 21, 3:25 pm, James Michael Fultz <xy...@sent.as.invalid> wrote:
> * Chris Allen <ca.al...@gmail.com>:> How do I find file "findme" in tree "bigtree" searching only
>
> [ ... ]
>
> $ find bigtree -print
> bigtree
> bigtree/not_here
> bigtree/not_here/findme
> bigtree/in_here
> bigtree/in_here/findme
> bigtree/findme
>
> $ find bigtree -wholename '*/in_here/*' -name findme -print
> bigtree/in_here/findme
>
> --
> James Michael Fultz <xy...@sent.as.invalid>
> Remove this part when replying ^^^^^^^^
Thanks for that solution. Unfortunately I don't have access to GNU
find and our security policy prevents me from installing it. I'm
working on Solaris 8, with the standard built in tools. Is there
anyway to do this with the regular find command?
|