I use the following shell script to move pictures from 'some' location (mostly the memory card) into their directories AND to a backup directory.<div>(NB: this is a very basic script which could use some errorchecking, but until now it has been working great.)</div>

<div>---------------------------------------------------------------------------------------------------------</div><div><div>#!/bin/bash</div><div><br></div><div># Copy binary image files from current directory to backup directory and</div>

<div># move the binary image files to the new tree</div><div># The directorystructure and filename is based on the date the original</div><div># picture was taken and has the following format:</div><div># <backupdirectory>/YYYY/YYMM/YYYYMMDD/YYYYMMDD_<original name></div>

<div>#  and</div><div># <picturedirectory>/YYYY/YYMM/YYYYMMDD/YYYYMMDD_<original name></div><div>#</div><div><br></div><div># Copy *.JPG & *.CR2 files from current directory to backup</div><div>exiftool -o /media/U2-2/InputBackup/ '-FileName<DateTimeOriginal' \</div>

<div>      -d /media/U2-2/InputBackup/%Y/%Y%m/%Y%m%d/%Y%m%d_%%f.%%e .</div><div><br></div><div><br></div><div># Move *.JPG en *.CR2 files from current naar AAAA_Input directory</div><div>exiftool '-FileName<DateTimeOriginal' \</div>

<div>      -d /home/lcn/Pictures/Pictures/AAAA_Inbox/%Y/%Y%m/%Y%m%d/%Y%m%d_%%f.%%e .</div>-----------------------------------------------------------------</div><div><br></div><div>Leo Noordhuizen</div><div><br><div class="gmail_quote">

On Sat, Feb 4, 2012 at 10:10 PM, Ben Staude <span dir="ltr"><<a href="mailto:sben1783@yahoo.de">sben1783@yahoo.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

14:49 Samstag, 4.Februar 2012 Peter Albrecht <<a href="mailto:peter@crazymonkeys.de">peter@crazymonkeys.de</a>> wrote<br>
<br>
<br>
> On <a href="tel:02.02.2012%2000" value="+31202201200">02.02.2012 00</a>:07, Marie-Noëlle Augendre wrote:<br>
> > 2012/2/1 Ben Staude <<a href="mailto:sben1783@yahoo.de">sben1783@yahoo.de</a>><br>
> >> The process of importing, for me, always happens when there's absolutely no<br>
> >> time for nothing because I suddenly need the camera with an empty card to<br>
> >> leave for the weekend or holiday. This always is the last thing that comes<br>
> >> into my mind before leaving:)<br>
<br>
> > I find this very strange, as importing pictures is the first thing I do<br>
> > when I come back home; even if I have not enough time to sort all the<br>
> > pictures I've taken, I usually like to browse them at least to roughly see<br>
> > if 'the hunitng was good'. ;-)<br>
><br>
> My reason for "importing pictures as soon as you are back home":<br>
> This gives you a first backup of your precious pictures,<br>
> since after the import they exist in two places: Your PC and<br>
> your memory card.<br>
<br>
I remove the pictures from the memory card just after download (see above), but in<br>
parallel,  I do start a backup from my PC to the external usb drive. I dislike the idea<br>
of having only one copy of the pictures.<br>
Anyway, like Marie-Noëlle: there's no time for splitting the images into their final<br>
directories at download time:)<br>
<br>
Thanks & regards<br>
Ben<br>
_______________________________________________<br>
Digikam-users mailing list<br>
<a href="mailto:Digikam-users@kde.org">Digikam-users@kde.org</a><br>
<a href="https://mail.kde.org/mailman/listinfo/digikam-users" target="_blank">https://mail.kde.org/mailman/listinfo/digikam-users</a><br>
</blockquote></div><br></div>