Displaying 2 results from an estimated 2 matches for "maxtor6".
Did you mean:
maxtor
2009 Apr 16
0
Using rsync for a backup program but having trouble getting --exclude-from to wor
...clude-from' got me to the same place.
>
> Here is the script I am using:
> ####################################
>
> #/bin/bash
> suffix=`date +%Y%m%d`
> echo Suffix is "$suffix"
> fromdir=/home/bob/
> echo Source dir is "$fromdir"
> todir="$maxtor6"BackupOfHome
> excl="$fromdir".dobackup.excl
> echo Exclusions file is "$excl"
> echo Destination dir is "$todir"
> rsync --exclude-from="$excl" -a -b -vv --suffix="$suffix" $fromdir
> $todir
>
> exit 0
> #############...
2009 Apr 15
2
Using rsync for a backup program but having trouble getting --exclude-from to work properly
...this issue
and searching your site on '--exclude-from' got me to the same place.
Here is the script I am using:
####################################
#/bin/bash
suffix=`date +%Y%m%d`
echo Suffix is "$suffix"
fromdir=/home/bob/
echo Source dir is "$fromdir"
todir="$maxtor6"BackupOfHome
excl="$fromdir".dobackup.excl
echo Exclusions file is "$excl"
echo Destination dir is "$todir"
rsync --exclude-from="$excl" -a -b -vv --suffix="$suffix" $fromdir $todir
exit 0
########################
Here is the content of the e...