Ah, I think that is expected behavior actually. I ...
# general
z
Ah, I think that is expected behavior actually. I believe it's supposed to be consistent with bash-style globbing:
Copy code
~/dev/test  touch .foobar
 ~/dev/test  touch foo
 ~/dev/test  touch bar
 ~/dev/test  ls *
bar foo
 ~/dev/test  ls .*
.foobar