#trovafile nomefile if test -f $1 -a -r $1 then echo `pwd`/$1 >> /tmp/temp fi for i in * do if test -d $i -a -x $i then cd $i trovafile $* cd .. fi done