1 2 3 4 5 6 7 8 9 10 11 12
#!/bin/bash IFS=' ' for i in $(find . -iname "*.zip") ; do dn=$(dirname "$i") cd "$dn" unzip -oj $(basename $i) cd - done