|
I'm not too keen on synchronising files, since it's not intuitive (to me) as to what happens if I edit the same file on both locations, before running the sync program. And I'm not too keen on sync software synchronising my errors (i.e. if I accidentally delete a file from one location).
So what I do, is just edit the files on the USB drive, and then run rsync to copy those files to my hard disk.
I enter this into my AppleScript Script Editor, and then save it as an application; which I put on the root directory of my USB drive.
do shell script "rsync -avE /Volumes/USBDISK/study/ ~/Desktop/study/ "
display dialog result
I'm not even a UNIX casual user by any means, but AFAIK, running that Applescript will copy the changes from the folder (study) in the USB drive, onto my desktop. If I delete a file from the study folder, I think this is not reflected on the destination folder -- unless I specifiy a -delete tag.
One good thing about this method, is that it's portable: I can just double click the Applescript application (this lives on the USBDISK root directory), and the stuff gets copied to the desktop, no matter which ones of my computers I am using.
It's quite rudimentary, but it does what I want. And free. And editable enough in case I want to do a backup over a network.
ps, you could type this into an Applescript module of automator, if you wanted to. That would give you a universal binary app. Script Editor creates PPC apps.
pps: I also format my USB drive into HFS Extended no journaling, if that make a difference.
Last edited by icant; 25-04-2007 at 06:54 PM.
|