From: Matt D.
> 
> Is there a reason why these produce different results?
> 
> find . -exec cygpath -wa {} \;
> find . -exec echo $(cygpath -wa {}) \;
> 
> I have to do this which is much slower:
> find . -exec bash -c 'echo $(cygpath -wa {})' \;
> 
> Or this:
> find . | while read a; do echo $(cygpath -wa $a); done

How about the following?

find . | cygpath -waf-

--Ken Nellis

Reply via email to