I put the following unsuccessfully to my .bashrc

shopt -s globstar

I am trying to test the command in action by

ls **/*.c

and by comparing it to

ls */*/*.c

How can you enable globstar in Bash 4?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Hmm. shopt -s globstar should work.

To debug, make sure you are running Bash 4:

$0 --version

Then check the setting of globstar:

shopt globstar

If it is unset, try setting it manually:

shopt -s globstar

Now see if that works. If it does, you might want to look into why your .bashrc isn't working. Did you remember to restart you shell after editing your .bashrc, or load it with . .bashrc?

link|improve this answer
Thank you! I apparently did not remember to restart my shell. – Masi Apr 27 '09 at 15:16
feedback

Your Answer

 
or
required, but never shown

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