Displaying 3 results from an estimated 3 matches for "raync".
Did you mean:
rayne
2016 Oct 29
3
-e escape rule
On Fri, Oct 28, 2016 at 5:39 AM, Samuel Williams <
space.ship.traveller at gmail.com> wrote:
> Rsync passed the backslashes through without dealing with them.
>
Yeah, it only does space-splitting and that's all it will ever do. It still
looks to me like there is a bug in the original escaping, since any command
receiving that string is receiving a backslash that is not supposed
2010 Feb 21
2
some file are not there
hi
i try to backup some dir of my hd
i had an old script... but i lost it...
i tried to create a new one, without success
include.txt
+ .kde/
+ .kde/share/
+ .kde/share/apps/
+ .kde/share/apps/kmail/***
+ .kde/share/apps/kwallet/***
- .**
exclude.txt
rpm/
mp3/
Download/
.*
my backup script:
#!/bin/sh
# directory to backup
BDIR=/home/$USER
#destination
DEST=/dev/sr0
# excludes file
2016 Oct 29
0
-e escape rule
...t;kmk at sanitarium.net> wrote:
>> A \ is a shell escape. Every level of shell consumes one level of
>> escape. For every session of a shell every example "\ " becomes " " and
>> every example of "\\" becomes "\".
>>
>> The raync command line is a mix of local shell commands + commands run
>> via a remote shell via ssh.
>>
>> The simple fact is that if only \ escapes are used, the local shell will
>> utilize those escapes and rsync will never see them.
>>
>> For every level of shell an es...