10 lines
133 B
Bash
Executable File
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
|
|
|