Unzip All Files In Subfolders Linux

xargs:

If you want to find all zips in subfolders but extract their contents into your (merging everything into one place), use this simpler version: find . -name "*.zip" -exec unzip "{}" \; Use code with caution. 3. Using a Simple Bash Loop unzip all files in subfolders linux

Example with find :

After some more research, John discovered the perfect one-liner: xargs: If you want to find all zips