search for: folder_target

Displaying 1 result from an estimated 1 matches for "folder_target".

2005 Oct 11
1
Rsync hangs after a while when tunneling from A->B->C
...o access C from A (and vica versa) via B. When I now run my Rsync scripts in cygwin: # _______________________________________________________________________________ #!/bin/bash # Command to synchronize (only update) two computers based on RSYNC FOLDER_SOURCE="/cygdrive/d/scripts" FOLDER_TARGET="/cygdrive/g/stefaanlh/scripts" PC_SOURCE="ip of pc-A" PC_TARGET="ip of pc-C" echo Synchronizing of SOURCE with TARGET rsync -auvvvz --timeout=999 -e "ssh stefaanlh@ip-pc-B ssh" $FOLDER_SOURCE/ $PC_TARGET:$FOLDER_TARGET echo Synchronizing of TARGET with SOU...