Skip to content

Instantly share code, notes, and snippets.

@SimonGivre
SimonGivre / recu_inspect_archives.sh
Last active April 18, 2019 11:44 — forked from tyrcho/recunzip.sh
recursively unzip jar, war, ear files
#inspired by http://unix.stackexchange.com/questions/4367/extracting-nested-zip-files
while [ "`find . -type f -name '*.?ar' | wc -l`" -gt 0 ]; do
find -type f -name "*.?ar" \
-exec mkdir -p '{}.dir' \; \
-exec unzip -o -d '{}.dir' '{}' \; \
-exec rm -- '{}' \;
done