On Thu, May 21, 2009 at 8:34 PM, Michael Casey <michaelcase...@gmail.com> wrote: > yeah, SOLVED: :)) > > clear; find . -type d | while read FOLDERNAME; do $(cd "$FOLDERNAME"); done If you want set variables and using it later, I recommend you another method: while read FOLDERNAME; do $(cd "$FOLDERNAME"); done < <(find . -type d)
Regards, -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org