Comment Re:thinking about something new? think again (Score 1) 482
for file in `find . -type f`;
do
dostuff $file
done
do
dostuff $file
done
Or, as a single line:
find . -type f -exec dostuff {} \;
Behold, the power of the shell!