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