The following command doesn't do the subtitution, why?
find ./ -name "*.dng" -exec echo `basename \{\} .dng` \;
but this command work:
find ./ -name "*.dng" -exec basename \{\} .dng \;
What I'm actually trying to do is to find all the dng in my hard drive and do:
touch -c -r {basename}.RW2 {basename}.dng