> for dir in `find -maxdepth 1 -type d`; do chdir $dir/bak; mv *.yml .. ; chdir > ../..; done
Joel, try this, HTH: for dir in `find -maxdepth 1 -type d`; do chdir $dir/bak; mv *.yml ../..; done Kind regards, Andrew -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/[email protected]

