With CR2+JPEG, when I remove pictures from shotwell (move to trah, then clean
the trash), only the JPG file is deleted from the folder. The CR2 file is
still there . I am working around by running this in the folder


#!/bin/bash

for i in *.CR2
do
    j=`echo $i |  sed '$s/....$//'`
    k=${j}.JPG
    if [ ! -f $k ];
    then
       rm $i
    fi
done

but I should not have to do it!

--
View this message in context: 
http://shotwell.3510.www.nabble.com/CR2-files-not-deleted-when-moved-to-trash-and-trash-cleaned-tp52781p52781.html
Sent from the Shotwell mailing list archive at Nabble.com.
_______________________________________________
Shotwell mailing list
[email protected]
http://lists.yorba.org/cgi-bin/mailman/listinfo/shotwell

Reply via email to