On Fri, Jan 7, 2011 at 6:32 PM, David Vincent-Jones <[email protected]> wrote: > Thanks ... I think this was the old Canon output format but was not raw > material. Renaming to tiff appears my best option; maybe somebody can > steer me on the right path for this. > > All my files are in a number of sub-folders under ~/Pictures. > Can someone advise the recursive call to hunt out and change all of the > tif files to tiff? If I can do this in a single crack it will save hours > of fussing.
find ~/Pictures -name '*.tif' | while read f ; do mv "$f" "$(basename "$f").tiff" ; done > > Thanks; > > David > > On Fri, 2011-01-07 at 22:00 +0100, Anders Kvist wrote: >> On 2011-01-07 21:24, Hubert Figuière wrote: >> > On 11-01-07 11:49 AM, David Vincent-Jones wrote: >> >> Would it be possible to not have TIF files displayed alongside my RAW >> >> CR2s? ... This really clutters the workspace. >> >> >> > >> > What if you rename them .tiff ? >> >> I think that would work. Or put them in some other location... >> >> David, the reason for showing files with the .tif extension are that it >> could be a raw file (Old Canons and maybe other?) and we have no way of >> knowing without opening the file. >> >> If you compile Rawstudio yourself, you can remove that extension from >> the loader to get rid of them. Let me know if you need a file and line >> numer to comment out :) >> >> /Anders >> >> >> _______________________________________________ >> Rawstudio-users mailing list >> [email protected] >> http://rawstudio.org/cgi-bin/mailman/listinfo/rawstudio-users > > > > _______________________________________________ > Rawstudio-users mailing list > [email protected] > http://rawstudio.org/cgi-bin/mailman/listinfo/rawstudio-users > _______________________________________________ Rawstudio-users mailing list [email protected] http://rawstudio.org/cgi-bin/mailman/listinfo/rawstudio-users
