Your script works here on cygwin.
But I prefer letting find do the directory browsing though...
orCode:find . -type f -exec sha1sum {} \;
Peace always,Code:find . -type f | while read file ; do # do whatever what you wanna do here sha1sum $file done
<jdenny>




Reply With Quote