Files
image_processing/zip_images_resize_recursive.sh
T
2025-11-26 19:57:06 -05:00

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