Open1

Linux 圧縮されているフォルダをfindで解凍

さねらさねら

find . -name '*.rar' -or -name '*.zip' -or -name '*.7z' -type f | while read f; do 7z x -aou "$f"; done