From mboxrd@z Thu Jan 1 00:00:00 1970 Mime-Version: 1.0 (Apple Message framework v752.2) Content-Transfer-Encoding: 7bit Message-Id: <45609539-34EC-4F53-AECF-769F401EC6F0@tinker.com> Content-Type: text/plain; charset=US-ASCII; format=flowed To: Fans of the OS Plan 9 from Bell Labs <9fans@cse.psu.edu> From: Kim Shrier Date: Sun, 10 Jun 2007 13:32:25 -0600 Subject: [9fans] Is there a Plan 9 equivalent of the find command Topicbox-Message-UUID: 7c49e04c-ead2-11e9-9d60-3106f5b1d025 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