올리브영 테크블로그 포스팅 신규 전시 프로젝트에서 WebClient 사용하기

Subfolders Linux _best_ — Unzip All Files In

Technical Report: Automated Extraction of ZIP Archives Across Subdirectories in Linux Environments

Report ID: LR-2026-04-12
System Environment: GNU/Linux (Distribution Agnostic)
Target Audience: System Administrators, DevOps Engineers, Data Analysts

find . -name "*.zip" -type f | while read -r zipfile; do
    target_dir=$(dirname "$zipfile")
    unzip -o "$zipfile" -d "$target_dir"
done

If you prefer a scriptable approach that handles filenames with spaces safely: find . -name read filename; unzip -o -d "$(dirname " "$filename" Use code with caution. Copied to clipboard for Speed: For systems with many files, can process multiple files more efficiently: find . -name -print0 | xargs - -I {} unzip -o {} -d "$(dirname " Use code with caution. Copied to clipboard Stack Overflow unzip all files in subfolders linux

  • -name "*.zip" : matches ZIP files (case-sensitive; use -iname for case-insensitive).
  • -type f : ensures only regular files.
  • {} : placeholder for each found file.
  • -d {}.extracted : extracts into a folder named after the ZIP file (e.g., archive.zip.extracted).
  • Choose -j or -P based on CPU and I/O capacity. Beware of disk contention.

if [[ "$*" == "--overwrite" ]]; then OVERWRITE="-o" else OVERWRITE="-n" fi If you prefer a scriptable approach that handles

2. Prerequisites

  • A Linux environment with Bash (or compatible shell)
  • The unzip utility installed. If not available, install it using:
    sudo apt install unzip        # Debian/Ubuntu
    sudo dnf install unzip        # Fedora/RHEL
    

Method 1: Using find with -exec (The Most Common Approach)

The find command is the Swiss Army knife of file operations. To unzip every .zip file found inside any subfolder of the current directory: -name "*