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

10 lines
83 B
Bash
Executable File

#!/bin/bash
for f in ./**
do
pushd "$f"
~/images_resize.sh
popd
done