Unzip all zip files in the directory tree

Tue 09 February 2016

If you have a directory containing a lot of zip files with data.

You might find the following command useful. It unzips all zip files under the current directory in their current location.

find . -name '*.zip' -exec sh -c 'unzip -o -d "${0%/*}" "$0"' '{}' ';'