similar to: [Bug 2690] New: SYNOPSIS "rsync [OPTION]... SRC [SRC]... DEST" incorrect

Displaying 20 results from an estimated 20000 matches similar to: "[Bug 2690] New: SYNOPSIS "rsync [OPTION]... SRC [SRC]... DEST" incorrect"

2005 May 09
2
[Bug 2690] Manpage suggestions
https://bugzilla.samba.org/show_bug.cgi?id=2690 wayned@samba.org changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|trivial |enhancement Status|NEW |ASSIGNED Summary|SYNOPSIS "rsync [OPTION]... |Manpage
2018 Dec 06
0
[PATCH nbdkit 1/5] src: Mark synopsis.c as BUILT_SOURCES.
--- src/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Makefile.am b/src/Makefile.am index 3490c0f..65f9498 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -80,6 +80,7 @@ nbdkit_LDFLAGS = \ # synopsis.c is generated from docs/synopsis.txt where it is also # used to generate the man page. It is included in main.c. +BUILT_SOURCES = synopsis.c EXTRA_DIST = synopsis.c
2018 Dec 07
1
Re: [PATCH nbdkit 1/5] src: Mark synopsis.c as BUILT_SOURCES.
On 12/6/18 3:50 PM, Richard W.M. Jones wrote: > --- > src/Makefile.am | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/src/Makefile.am b/src/Makefile.am > index 3490c0f..65f9498 100644 > --- a/src/Makefile.am > +++ b/src/Makefile.am > @@ -80,6 +80,7 @@ nbdkit_LDFLAGS = \ > # synopsis.c is generated from docs/synopsis.txt where it is also > # used to
2005 Jul 17
0
[Bug 2690] Manpage suggestions
https://bugzilla.samba.org/show_bug.cgi?id=2690 ------- Additional Comments From Raf_Schietekat@ieee.org 2005-07-17 02:21 ------- (In reply to comment #3) Great! BTW, sorry for not replying sooner. --- > There are two different ways for rsync to contact a remote system: using a > remote-shell program as the transport (such as ssh or rsh) or contacting an > rsync daemon directly
2016 Jul 25
2
[Bug 12036] New: Multiple --link-dest, --copy-dest, or --compare-dest flags produce incorrect behavior
https://bugzilla.samba.org/show_bug.cgi?id=12036 Bug ID: 12036 Summary: Multiple --link-dest, --copy-dest, or --compare-dest flags produce incorrect behavior Product: rsync Version: 3.1.2 Hardware: All OS: Linux Status: NEW Severity: normal Priority: P5 Component:
2006 Jul 13
0
Difference between 'DEST' & '--backup-dir='?
Hello all, I have a question. The man page of rsync: SYNOPSIS rsync [OPTION]... SRC [SRC]... DEST R?SUM? DES OPTIONS --backup-dir effectue des sauvegardes dans ce r?pertoire What is the difference between 'DEST' and the rsync option '--backup-dir='? Thank you very much. paco
2019 Nov 14
1
hardlinking missing files from src to a dest: didn't work way I thought it would.
Am 14.11.19 um 15:02 schrieb Paul Slootman via rsync: > On Thu 14 Nov 2019, Pierre Bernhardt via rsync wrote: > So it's looking for b/a as the link-dest directory. > > Use a full pathname for --link-dest to remove all uncertainty. > E.g.: > > rsync -av --link-dest=$(pwd)/a a/ b/ > > In this case, as the destination is also in same current directory, you >
2010 Dec 16
1
DO NOT REPLY [Bug 7870] New: --link-dest=${SRC} ${SRC} ${DST} can be smarter
https://bugzilla.samba.org/show_bug.cgi?id=7870 Summary: --link-dest=${SRC} ${SRC} ${DST} can be smarter Product: rsync Version: 3.0.7 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P3 Component: core AssignedTo: wayned at samba.org ReportedBy: weerd+rsync at
2019 Nov 14
2
hardlinking missing files from src to a dest: didn't work way I thought it would.
Am 14.11.19 um 10:54 schrieb Paul Slootman via rsync: > You need to specify the source directory as the link-dest directory. Hi, I tried it also because it's an old question which has never worked for me. Instead it creates copies and not hard links: pierre at in94:~/tmp$ ls -li a b a: insgesamt 8 257315 -rw-r--r-- 1 pierre pierre 4 Nov 14 10:53 1 257316 -rw-r--r-- 1 pierre pierre 6 Nov
2018 Aug 18
1
Re: [PATCH v2] build: Build synopsis.c before main.c
On Sun, Aug 19, 2018 at 12:43 AM Richard W.M. Jones <rjones@redhat.com> wrote: > From: Nir Soffer <nirsof@gmail.com> > > synopsis.c was defined as dependency of the nbdkit program, but it > should be define as dependency of main.c. Otherwise "make" fail with: > > main.c:180:10: fatal error: synopsis.c: No such file or directory > #include
2006 Feb 24
1
How to use multiple link-dest directories?
Hi guys, I hope this is not considered a stupid question, but it really seems to be something that needs to be covered with a decent example in the man page. I have looked in every piece of documentation I can think of and have found no answer. So I want to use the multiple link-dest directories feature as of 2.6.4. (I am using 2.6.6) My understanding of how this should work is that I can
2012 Sep 17
1
[Bug 9167] New: --dry-run --stats --link-dest provides incorrect stats
https://bugzilla.samba.org/show_bug.cgi?id=9167 Summary: --dry-run --stats --link-dest provides incorrect stats Product: rsync Version: 3.0.9 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P5 Component: core AssignedTo: wayned at samba.org ReportedBy: michele.giacomoli
2018 Aug 18
0
[PATCH v2] build: Build synopsis.c before main.c
From: Nir Soffer <nirsof@gmail.com> synopsis.c was defined as dependency of the nbdkit program, but it should be define as dependency of main.c. Otherwise "make" fail with: main.c:180:10: fatal error: synopsis.c: No such file or directory #include "synopsis.c" ^~~~~~~~~~~~ Fixes commit 445e18f3dbb2 (src, docs: Generate the nbdkit command synopsis from a
2018 Aug 18
2
[PATCH] build: Build synopsis.c before main.c
synopsis.c was defined as dependency of the nbdkit program, but it should be define as dependency of main.c. Otherwise "make" fail with: main.c:180:10: fatal error: synopsis.c: No such file or directory #include "synopsis.c" ^~~~~~~~~~~~ Fixes commit 445e18f3dbb2 (src, docs: Generate the nbdkit command synopsis from a single source). --- src/Makefile.am | 2 +- 1
2011 Jun 08
1
tcrules: src/dest ports and proto error
Hello, It seems that the following restriction is not shown in the online man page for tcrules: ERROR: SOURCE/DEST PORT(S) not allowed with PROTO all : /tmp/shorewall/tcrules (line 2) Please let me know if this is expressed otherwise in the documentation. Thanks. ------------------------------------------------------------------------------ EditLive Enterprise is the world''s most
2012 Jul 13
2
[LLVMdev] How to specify that Src Reg and Dest Reg can't be the same in td?
Hi all, I would like to know if XXXInstrInfo.td or other td files should be the right place to specify Src Reg and Dest Reg in one instruction can't be the same. If so, could you give an example on that? Thanks! Regards, chenwj -- Wei-Ren Chen (陳韋任) Computer Systems Lab, Institute of Information Science, Academia Sinica, Taiwan (R.O.C.) Tel:886-2-2788-3799 #1667 Homepage:
2012 Jul 13
0
[LLVMdev] How to specify that Src Reg and Dest Reg can't be the same in td?
Hi Wei-Ren, I don't think you can model it with Constraints in td files. You may try to put a regalloc hint in src and dst operands of the instructions you are interested. See getRawAllocationOrder(), ResolveRegAllocHint() and UpdateRegAllocHint() hooks in TargetRegisterInfo. ARM has good examples on how to implements them. Ivan On 13/07/2012 09:28, 陳韋任 (Wei-Ren Chen) wrote: > Hi
2019 Nov 14
2
hardlinking missing files from src to a dest: didn't work way I thought it would.
Have a directory with a bunch rpms in it, mostly x86_64. Have another directory with a bunch, mostly 'noarch'. Some of the noarch files are already in the x86_64 dir and don't want to overwrite them. They are on the same physical disk, so really, just want the new 'noarch' files hardlinked into the destination. sitting in the noarch dir, I tried: rsync -auv
2014 Dec 02
1
Re: [PATCH v2] fish: show synopsis if command syntax is wrong
On Mon, Dec 01, 2014 at 06:01:25PM +0000, Richard W.M. Jones wrote: > > How about the following? I've made it use a named value > (RUN_WRONG_ARGS == -2) instead of just the magic number. Yes, it looks better! > > Also I removed an incorrect hunk from the original patch (space before > synopsis string is required). The space before synopsis makes the text of synopsis
2014 Dec 01
0
Re: [PATCH] fish: show synopsis if command syntax is wrong
On Mon, Dec 01, 2014 at 10:25:51AM +0800, Hu Tao wrote: > On Fri, Nov 28, 2014 at 03:00:39PM +0100, Pino Toscano wrote: > > On Friday 28 November 2014 17:55:51 Hu Tao wrote: > > > This patch lets guestfish show command synopsis if the syntax of command issued > > > by user is wrong, rather than telling user that the number of parameters is wrong. > > > > The