1 2 3 4 5 6 7 8 9 10
#!/bin/sh for dir in *; do if test -d $dir; then ( cd $dir PATH="${PWD}:${PATH}" env -u REDO_MD5SUM redo ) fi done