This is probably me just stuck in the UNIX mind set again. I have looked through the commands and I don't see anything that does what find does. What I am trying to do is look in a directory that has many files and subdirectories and find any file that contains a string. In UNIX, I would do something like this.
find . -type f -exec grep some_pattern {} \; -print
What is the Plan 9 way?
Thanks,
Kim
