It used to be you had to escape the asterisk in the find command, if you didn't it would expand to the filenames in the current directory.   that behavior apparantly changed.  Does anybody know how long that's been?
<br><br>old way, if you were in a directory with the contents:<br>blah<br>one<br>two<br><br>and you did a find like this:  <br>find . -name *.txt<br>It would have looked for the three files blah.txt one.txt and two.txt<br>
To do that find the way you wanted it to work, you would have to run it like this:<br>find . -name \*.txt<br><br>Now, with the version of redhat I have (AS4), doing <br>find . -name *.txt<br>looks through and finds the appropriate *.txt file like you would expect. 
<br><br><br><br>-- <br>Roger