So I wrote a script to do this, and it works all perfectly well...
- Code: Select all
[x11@kintaro64 ~]$ cat Toolkit/usbsync.sh
#!/bin/sh
DEVFOLDER="Kintaro"
DEVICE="/media/disk/$DEVFOLDER"
echo "Doing sync from $USER homedir $DEVICE"
cp -vRu ~/Sync/* $DEVICE
echo "Doing sync from $DEVICE to $USER"
cp -vRu $DEVICE/* ~/Sync/
The only problem this script here has is that, I cannot DELETE anything without it syncing back to the other.
So I was curious as to some pointers on what I should use, to stop being so lazy. I was thinking of rsync or something like that, but I want something as simple as possible to do the job, so I was curious as to suggestions of what software I should use.


