Displaying 3 results from an estimated 3 matches for "gnudate".
Did you mean:
enddate
2002 Jun 25
1
rsync finishes but incomplete
...nning rsync over ssh, by way of cygwin.
I have a cron script that grabs a directory from remote and puts it on
local. It' very simple
#!/bin/bash
echo "-------------------------------------" >> /home/rsync/job.log
echo "Running rsync job" >> /home/rsync/job.log
gnudate >> /home/rsync/job.log
rsync -az --stats -e ssh --exclude "WIN386.SWP" --exclude "Cache/" --exclude "*.AVB" --exclude "APPS/" --exclude "virus update/" rsync@x.x.x.x:/cygdrive/e/data /cygdrive/g/901/>>/home/rsync/job.log
echo "Done!...
2006 Mar 28
1
rsync on windows
...file content:
***********************************************
@echo off
set PATH=c:\rsync;%PATH%
set CYGWIN=tty binmode
set TERM=ansi
rem set RSYNC_RSH=c:\rsync\ssh.exe
set RSYNC_RSH=/cygdrive/c/rsync/ssh.exe
set USERNAME=myusername
set HOME=c:\rsync
echo Drive C >>c:\rsync\rsync.log
c:\rsync\gnudate >>c:\rsync\rsync.log
c:\rsync\rsync -auv --delete --exclude "/rsync/rsync.log"
"/cygdrive/c/Program Files/PostgreSQL/8.1/"
127.0.0.1:/cygdrive/c/lun/postgre >>c:\rsync\rsync.log
c:\rsync\gnudate >>c:\rsync\rsync.log
pause
***************************************...
2005 Mar 25
0
rsync+auto-ssh
...here(my apologies)
actually, i am facing a very strange issue as :
my objective is to use rsync from windows m/c with ssh(auto), so i did
as ...
1) I installed rsync_full.zip, from
http://optics.ph.unimelb.edu.au/help/rsync/rsync_pc1.html
2) It contains following files(c:\rsync) :- cygwin1.dll, gnudate.exe,
rsetup.bat, rsync2.5.1-dev.exe, rsync246.exe, rsync251-2.exe,
drivec.bat, sshd.exe, ssh-keygen.exe, scp.exe, ssh.exe, ssh-add.exe,
ssh-agent.exe
3) Win boxes are win98 & win2000, while linux box is RH9, bimal is a
user on linux box.
4) I am very much able to do rsync and ssh from window...