Phrogz wrote: > What I do is use my little "findfile" ruby script (code below) from the > command line. It's sort of like a grep utility that allows you to use > regexps as a filter for file names, and as a content searcher. For I have a little script called "fic" ... "Find In Code". Here it is: #!/usr/bin/env ruby require 'rake' FileList["**/*.rb"].egrep(Regexp.new(ARGV.first)) -- Jim Weirich -- Posted via http://www.ruby-forum.com/.