10 lines
83 B
Bash
Executable File
10 lines
83 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for f in ./**
|
|
do
|
|
pushd "$f"
|
|
~/images_resize.sh
|
|
popd
|
|
done
|
|
|