This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: find doesn't find existing files


On Tue, Feb 23, 2016 at 3:19 PM, Csaba Raduly wrote:
> This has me perplexed:
>
> $ ls -l /usr/lib/perl5/vendor_perl/5.22/x86_64-cygwin-threads/XML/libXML.pm
> -rw-r--r-- 1 Csaba None 65K Dec  6 14:16
> /usr/lib/perl5/vendor_perl/5.22/x86_64-cygwin-threads/XML/libXML.pm
>
> $ which find
> /usr/bin/find
>
> $ find  /usr/lib/perl5  -name libXML.pm
> (no output)

My first thought is if /usr/lib/perl5 is a symlink, and
/usr/lib/perl5/ would give better results...  However, try

find /usr/lib/perl5 -exec ls -l {} \;

and see what that returns.

-- Erik

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]