search for: rsync_ex

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

Did you mean: rsync_exe
2003 Jan 16
1
Possible patch for Irix Makefile problem
...akefile.in Thu Jan 16 16:14:29 2003 @@ -43,8 +43,13 @@ OBJS=$(OBJS1) $(OBJS2) $(OBJS3) $(DAEMON TLS_OBJ = tls.o syscall.o lib/permstring.o # Programs we must have to run the test cases -CHECK_PROGS = rsync$(EXEEXT) tls$(EXEEXT) getgroups$(EXEEXT) \ - trimslash$(EXEEXT) t_unsafe$(EXEEXT) +RSYNC_EXE=rsync$(EXEEXT) +TLS_EXE=tls$(EXEEXT) +GETGROUPS_EXE=getgroups$(EXEEXT) +TRIMSLASH_EXE=trimslash$(EXEEXT) +T_UNSAFE_EXE=t_unsafe$(EXEEXT) +CHECK_PROGS=$(RSYNC_EXE) $(TLS_EXE) $(GETGROUPS_EXE) \ + $(TRIMSLASH_EXE) $(T_UNSAFE_EXE) # Objects for CHECK_PROGS to clean CHECK_OBJS=getgroups.o t_stub.o...
2008 Sep 23
1
help required for passing parameters to rsync within a script
...-v -rP --filter='+ */' --filter='+ CONC*' --filter='- *' . michael@ratty.phy.umist.ac.uk:/data_hdd1/michael/`basename $PWD` but I can't see how to sort FILTER in this bash script such that + and */ all work properly... ta, Michael # cmd - need newer than system rsync RSYNC_EXE=${HOME}/src/rsync-2.6.9__icc/rsync RSYNC_CMDS='--times --links -z --progress --stats -v --dry-run -rP' # source top-level SRC=. # from here down # dest (remote) DEST=michael@ratty.phy.umist.ac.uk:/data_hdd1/michael/`basename $PWD` # ensure in same dir on remote # filter: all subdirs but o...