vote up 1 vote down star

For this directory structure:

.
|-- README.txt
|-- firstlevel.rb
`-- lib
    |-- models
    |   |-- foo
    |   |   `-- fourthlevel.rb
    |   `-- thirdlevel.rb
    `-- secondlevel.rb

3 directories, 5 files

The glob would match:

firstlevel.rb 
lib/secondlevel.rb 
lib/models/thirdlevel.rb
lib/models/foo/fourthlevel.rb
flag

43% accept rate

4 Answers

vote up 2 vote down

Apologies if I've missed the real point of the question but, if I was using sh/bash/etc., then I would probably use find to do the job:

find . -name '*.rb' -type f

Globs can get a bit nasty when used from within a script and find is much more flexible.

link|flag
vote up 0 vote down

Looks like it can't be done from bash

If you using zsh then

ls **/*.rb

will produce the correct result.

Otherwise you can hijack the ruby interpreter (and probably those of other languages)

ruby -e "puts Dir.glob('**/*.rb')"

Thanks to Chris and Gaius for your answers.

link|flag
vote up 2 vote down

In zsh, **/*.rb works

link|flag
vote up 1 vote down

In Ruby itself:

Dir.glob('**/*.rb') perhaps?
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.