Tim Schoenfelder wrote: > I manned the "ls" utility and it recommended reporting this to the above > email address.
You found the right mailing list. > My story: > I was attempting to find all of the *.exe files in a win95 cdrom > (troubleshooting an install on an older PC) so I tried the following > command: > > ls -aR *.exe You were attempting to find files but you were using the wrong command. You should have been using 'find'. The 'ls' command lists directories and the 'find' command finds files. find . -name '*.exe' This is actually an FAQ and so I will redirect you there. Search for "Why doesn't rm -r *.pattern recurse like it should?" and also "Why don't the utilities have built in directory recursion?" http://www.gnu.org/software/coreutils/faq/coreutils-faq.html If that does not answer your question then please post another note. Bob _______________________________________________ Bug-fileutils mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-fileutils