6 lines
106 B
Bash
Executable File
6 lines
106 B
Bash
Executable File
#!/bin/bash
|
|
IFS=$'\n'; set -f
|
|
find . -iname *.zip -exec ~/zip_images_resize.sh '{}' \;
|
|
unset IFS; set +f
|
|
|