The unzip command doesn\'t have an option for recursively unzipping archives.
unzip
If I have the following directory structure and archives:
/Moth
You could use find along with the -exec flag in a single command line to do the job
find . -name "*.zip" -exec unzip {} \;