When I do the following:
rmdir /path/to/dir/*.lproj
it works fine.
When I do:
APP_RESOURCES="/path/to/dir"
rmdir "$APP_RESOURCES/*.lproj"
It doesn't work and says it literally looks for a directory named with an astrix-symbol. The wildcard doesn't get interpreted. How can this be made to work within quotations?