The Finder is clunky. Among other things. But I suspect the problem you are having is that the content of files is not indexed by Spotlight unless there is an mdimporter for the file type, and if you are trying to locate the content of system files such as "hostconfig" which have no extension, and thus no mdimporter, you're out of luck. Remember: the Mac GUI is designed to be easy to use for the average consumer who want to do email, surf the web, do things with their digital photos. That sort of user.
For what you want to do you may find just using the command line is the best solution. Thus, to find the string "unknown" in /private/etc I would use grep in the Terminal:
NoobiX:~ francine$ cd /private/etc/
NoobiX:/private/etc francine$ sudo grep "unknown" *
aliases:# late a "user unknown" error, and |"exit 0" to
ftpusers:unknown
group:unknown:*:99:
master.passwd:unknown:*:99:99::0:0:Unknown User:/var/empty:/usr/bin/false
passwd:unknown:*:99:99:Unknown User:/var/empty:/usr/bin/false
rc.common: * ) echo "$0: unknown argument: $1";;
rc.netboot: Failed "root device unknown"
rc.netboot: *) echo "unknown network filesystem mount from ${mount_from}"
smb.conf: guest account = unknown
smb.conf.template: guest account = unknown
ttys:fax "/usr/bin/fax answer" unknown off
ttys:tty00 "/usr/libexec/getty std.9600" unknown off secure
ttys:tty01 "/usr/libexec/getty std.9600" unknown off secure
ttys:tty02 "/usr/libexec/getty std.9600" unknown off secure
ttys:tty03 "/usr/libexec/getty std.9600" unknown off secure
ttys:tty04 "/usr/libexec/getty std.9600" unknown off secure
ttys:tty05 "/usr/libexec/getty std.9600" unknown off secure
ttys:tty06 "/usr/libexec/getty std.9600" unknown off secure
ttys:tty07 "/usr/libexec/getty std.9600" unknown off secure
Grep is really powerful if you know how to use it (I don't really--when I wanted to find a batch of html files that did not contain the DOCTYPE declaration I called my UNIX guru brother and asked him to construct the command, he did and it worked beautifully).
Francine
Francine
Schwieder