Files
image_processing/images_resize_recursive.sh
T
2025-11-27 02:33:17 +00:00

10 lines
133 B
Bash
Executable File

#!/bin/bash
find . -mindepth 1 -type d -print0 | while IFS= read -r -d '' f
do
pushd "$f"
~/images_resize.sh
popd
done