pw wrote: > #!/bin/bash > > export START=`pwd` > > for DIR in `find -type d`; do > cd $DIR; > cd $START; > done > > #END IF SCRIPT > Why not find . -type d -exec "stuff"? David