find not finding file.

2006-04-27 Thread RW
Can anyone explain this: # find /etc/ -name 'named.conf' # ls -l /etc/namedb/named.conf -rw-r--r-- 1 root wheel 3715 Nov 13 17:35 /etc/namedb/named.conf named.conf is not found, but as a sanity check a similar search for ppp.conf succeeds # find /etc/ -name 'ppp.conf'

Re: find not finding file.

2006-04-27 Thread Luke Dean
On Thu, 27 Apr 2006, RW wrote: Can anyone explain this: # find /etc/ -name 'named.conf' # ls -l /etc/namedb/named.conf -rw-r--r-- 1 root wheel 3715 Nov 13 17:35 /etc/namedb/named.conf named.conf is not found, but as a sanity check a similar search for ppp.conf succeeds # find

Re: find not finding file.

2006-04-27 Thread John Webster
--On Thursday, April 27, 2006 18:43:01 +0100 RW [EMAIL PROTECTED] wrote: Can anyone explain this: # find /etc/ -name 'named.conf' # ls -l /etc/namedb/named.conf -rw-r--r-- 1 root wheel 3715 Nov 13 17:35 /etc/namedb/named.conf /etc/namedb is a link to another directory,

Re: find not finding file.

2006-04-27 Thread Kevin Kinsey
John Webster wrote: Can anyone explain this: # find /etc/ -name 'named.conf' # ls -l /etc/namedb/named.conf -rw-r--r-- 1 root wheel 3715 Nov 13 17:35 /etc/namedb/named.conf /etc/namedb is a link to another directory, don't use the trailing / in the ls -ld. So, in this case, you