The solution suggested by druuna is the answer to the question. FYI,
dotglob is a shell option that controls the behavior of globbing, allowing the expansion of hidden files. You can toggle it using the shopt built-in:
Code:
$ shopt -s dotglob
$ ls *
a.zip b.zip .c.zip .d.zip e.zip
$ shopt -u dotglob
$ ls *
a.zip b.zip e.zip
Furthermore, as you can see, it does not expand . and ..