Rsync with spaces in source or destination path

2009-07-04 Thread paresh masani
Hi, I am trying to transfer a file that has spaces in its name. The rsync
gives me below error. Am I doing anything wrong?

#ls -l /tmp/test\ file
-rw-rw-r--   1 xxx  xxx0 Jul  5 02:23 /tmp//test file

# /usr/local/bin/rsync --archive /u/masanip/ACH/test\\\ file /tmp/mydir/
rsync: link_stat /tmp/test\ file failed: No such file or directory (2)

Number of files: 0
Number of files transferred: 0
Total file size: 0 bytes
Total transferred file size: 0 bytes
Literal data: 0 bytes
Matched data: 0 bytes
File list size: 9
File list generation time: 0.001 seconds
File list transfer time: 0.000 seconds
Total bytes sent: 121
Total bytes received: 12

sent 121 bytes  received 12 bytes  29.56 bytes/sec
total size is 0  speedup is 0.00
rsync error: some files/attrs were not transferred (see previous errors)
(code 23) at main.c(1039) [sender=3.0.6]

Thanks.
-- 
Please use reply-all for most replies to avoid omitting the mailing list.
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Rsync with spaces in source or destination path

2009-07-04 Thread paresh masani
Please note that double quates is working but I want to make it work with
\\\.

For example, == /usr/local/bin/rsync --archive /u/masanip/ACH/test file
/tmp/mydir/ == is working but  == /usr/local/bin/rsync --archive
/u/masanip/ACH/test\\\ file /tmp/mydir/ == not.

Thanks.

On Sun, Jul 5, 2009 at 2:29 AM, paresh masani masanipar...@gmail.comwrote:

 Hi, I am trying to transfer a file that has spaces in its name. The rsync
 gives me below error. Am I doing anything wrong?

 #ls -l /tmp/test\ file
 -rw-rw-r--   1 xxx  xxx0 Jul  5 02:23 /tmp//test file

 # /usr/local/bin/rsync --archive /u/masanip/ACH/test\\\ file /tmp/mydir/
 rsync: link_stat /tmp/test\ file failed: No such file or directory (2)

 Number of files: 0
 Number of files transferred: 0
 Total file size: 0 bytes
 Total transferred file size: 0 bytes
 Literal data: 0 bytes
 Matched data: 0 bytes
 File list size: 9
 File list generation time: 0.001 seconds
 File list transfer time: 0.000 seconds
 Total bytes sent: 121
 Total bytes received: 12

 sent 121 bytes  received 12 bytes  29.56 bytes/sec
 total size is 0  speedup is 0.00
 rsync error: some files/attrs were not transferred (see previous errors)
 (code 23) at main.c(1039) [sender=3.0.6]

 Thanks.

-- 
Please use reply-all for most replies to avoid omitting the mailing list.
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Rsync with spaces in source or destination path

2009-07-04 Thread Matthias Schniedermeyer
On 05.07.2009 02:29, paresh masani wrote:
 Hi, I am trying to transfer a file that has spaces in its name. The rsync
 gives me below error. Am I doing anything wrong?

What you are looking for is -s a.k.a. --protect-args'

- man rsync -
-s, --protect-args  no space-splitting; wildcard chars only
- snip -




Bis denn

-- 
Real Programmers consider what you see is what you get to be just as 
bad a concept in Text Editors as it is in women. No, the Real Programmer
wants a you asked for it, you got it text editor -- complicated, 
cryptic, powerful, unforgiving, dangerous.

-- 
Please use reply-all for most replies to avoid omitting the mailing list.
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


Re: Rsync with spaces in source or destination path

2009-07-04 Thread paresh masani
Got it work with single slash. :-)

# /usr/local/bin/rsync --archive /u/masanip/ACH/test\ file /tmp/mydir/

On Sun, Jul 5, 2009 at 2:34 AM, paresh masani masanipar...@gmail.comwrote:

 Please note that double quates is working but I want to make it work with
 \\\.

 For example, == /usr/local/bin/rsync --archive /u/masanip/ACH/test file
 /tmp/mydir/ == is working but  == /usr/local/bin/rsync --archive
 /u/masanip/ACH/test\\\ file /tmp/mydir/ == not.

 Thanks.


 On Sun, Jul 5, 2009 at 2:29 AM, paresh masani masanipar...@gmail.comwrote:

 Hi, I am trying to transfer a file that has spaces in its name. The rsync
 gives me below error. Am I doing anything wrong?

 #ls -l /tmp/test\ file
 -rw-rw-r--   1 xxx  xxx0 Jul  5 02:23 /tmp//test file

 # /usr/local/bin/rsync --archive /u/masanip/ACH/test\\\ file /tmp/mydir/
 rsync: link_stat /tmp/test\ file failed: No such file or directory (2)

 Number of files: 0
 Number of files transferred: 0
 Total file size: 0 bytes
 Total transferred file size: 0 bytes
 Literal data: 0 bytes
 Matched data: 0 bytes
 File list size: 9
 File list generation time: 0.001 seconds
 File list transfer time: 0.000 seconds
 Total bytes sent: 121
 Total bytes received: 12

 sent 121 bytes  received 12 bytes  29.56 bytes/sec
 total size is 0  speedup is 0.00
 rsync error: some files/attrs were not transferred (see previous errors)
 (code 23) at main.c(1039) [sender=3.0.6]

 Thanks.



-- 
Please use reply-all for most replies to avoid omitting the mailing list.
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Rsync with spaces in source or destination path

2009-07-04 Thread Eberhard Moenkeberg

Hi,

On Sun, 5 Jul 2009, paresh masani wrote:


Hi, I am trying to transfer a file that has spaces in its name. The rsync
gives me below error. Am I doing anything wrong?

#ls -l /tmp/test\ file
-rw-rw-r--   1 xxx  xxx0 Jul  5 02:23 /tmp//test file

# /usr/local/bin/rsync --archive /u/masanip/ACH/test\\\ file /tmp/mydir/
rsync: link_stat /tmp/test\ file failed: No such file or directory (2)


Don't you see it: one / too much.


Viele Gruesse
Eberhard Moenkeberg (emoe...@gwdg.de, e...@kki.org)

--
Eberhard Moenkeberg
Arbeitsgruppe IT-Infrastruktur
E-Mail: emoe...@gwdg.de  Tel.: +49 (0)551 201-1551
-
Gesellschaft fuer wissenschaftliche Datenverarbeitung mbH Goettingen (GWDG)
Am Fassberg 11, 37077 Goettingen
URL:http://www.gwdg.de E-Mail: g...@gwdg.de
Tel.:   +49 (0)551 201-1510Fax:+49 (0)551 201-2150
Geschaeftsfuehrer:   Prof. Dr. Bernhard Neumair
Aufsichtsratsvorsitzender: Dipl.-Kfm. Markus Hoppe
Sitz der Gesellschaft: Goettingen
Registergericht:   Goettingen  Handelsregister-Nr. B 598
-
--
Please use reply-all for most replies to avoid omitting the mailing list.
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html