How to find all files ending with .rb with Linux?
This should do it
find . -name "*t^" -print
Try this find . -type f -name '*.rb'
.
For a more thorough explanation, get the 'Unix Power Tools' book.
This should help:
find . | grep *\.rb
You could try
find . -type f -name \*.rb