The following message is a courtesy copy of an article that has been posted to comp.lang.ruby as well. This isn't a bug, just a question... ;-) What should Dir["**"] return. On 1.5.4, it seems to list just files in the current directory. However, under zsh, it also includes all files in subdirectories. With Ruby, you have to use Dir["**/*"] to achieve this. Just curious Dave