#!/bin/sh for dir in *; do if test -d $dir; then ( cd $dir PATH="${PWD}:${PATH}" env -u REDO_MD5SUM redo ) fi done