search for: dstpath

Displaying 2 results from an estimated 2 matches for "dstpath".

Did you mean: dst_path
2008 Feb 14
2
Rsync problems with some files & timestamp
...roblem does not occurs. Another thing is that the timestamp is not correct on the destination server, but only for some files! These file are one hour less in the destination server. Here is the parameters I use with rsync : rsync -v -t --delete --exclude=$EXCLUDE -e --ignore-errors $SRCPATH $DSTPATH >> mail.txt Tanks in advance! -- View this message in context: http://www.nabble.com/Rsync-problems-with-some-files---timestamp-tp15476237p15476237.html Sent from the Samba - rsync mailing list archive at Nabble.com.
2004 Aug 10
2
out of memory in receive_file_entry rsync-2.6.2
...'ll take the function out of my script and paste it here but it may not work right taken out of context. YMMV. <snip> function DC { # "Divide and Conquer" # evil hack to get around rsync's 3mil file limit # Accepts two arguments as the srcpath and dstpath. Will not work # if srcpath is local. srchost=`echo $1 | awk -F: '{ print $1 }'` srcdir=`echo $1 | awk -F: '{ print $2 }'` num_files=`ssh root@$srchost "find $srcdir | wc -l"` if [ $((num_files)) -gt 2000000 ] then...