Displaying 6 results from an estimated 6 matches for "toto2".
Did you mean:
toto
2007 Jun 06
1
add inverse recursive feature or do a mkdir -p/install -D -d ?
...rents directoy missing until full path is available on the
destination.
As workaround I have coded a little script rrsync.sh who do
an inverse recursive sync by calling rsync dry-run on every parents and
do a full rsync from the first parent available on destination.
TEST
$ mkdir -p test1/toto1/toto2/toto3/toto4
$ mkdir -p test2
$ touch test1/toto1/toto2/toto3/toto4/a
$ rsync -av test1/toto1/toto2/toto3/toto4 test2/toto1/toto2/toto3/toto4
building file list ... done
rsync: mkdir "/home/baco/test2/toto1/toto2/toto3/toto4" failed: No such
file or directory (2)
rsync error: error in fil...
2007 Jan 17
1
file.copy
Hi,
Copying a non-existing file with file.copy creates an empty file
> r <- file.copy("non-existing-file", ".")
> r
[1] TRUE
... and returns TRUE!
Now, when used in "vectorized" mode
> r <- file.copy(c("toto1", "toto2"), c("dest1", "dest2"))
[1] FALSE FALSE
file.copy looks much more reasonable, except that files "dest1"
and "dest2" are still created (despite the fact that "toto1" and
"toto2" don't exist).
If the 'to' argument is not...
2003 Oct 29
0
Different SAMBA reaction about file permissions
How come am I not able to delete this "aquila_test/toto2" file from our
"data" (see smb.conf below) directory but can delete it (different copy but
same permissions and owners/groups) from our "home" (see smb.conf below)
directory from a "Windows 2000" PC using samba ( we don`t have this
problem when doing unix command...
2012 Nov 20
1
[LLVMdev] Removing unused global constant
...-o test2.bc test.bc
but the string constants are removed and "@.str" is marked as external
@str = external hidden unnamed_addr constant [6 x i8]
How do you keep the global constant that are used in a function ?
I tried to keep all the .str* with
llvm-extract -func=hello -rglob=.str* -o toto2.bc toto.bc
The two string are available in the module :
@.str = private unnamed_addr constant [7 x i8] c"hello\0A\00", align 1
@.str1 = private unnamed_addr constant [8 x i8] c"hello2\0A\00", align 1
Then i run opt with a global dead code elimination
opt -globaldce test2.bc -o...
2013 Jul 09
9
One resource immediately after another
I need to apply three resources one immediatelly after another. It''s a
ifdown/ifup commands, and command to generate /etc/network/interfaces file.
I need to do ifdown, then rebuild interfaces, then ifup. I try to add
simple relationship, but in this case some File resources are trying to be
applied between ifdown and ifup. So they can''t connect to Puppet master to
verify
2009 Nov 27
5
unexpected raid1 behavior?
Hi, I''m starting to play with btrfs on my new computer. I''m running Gentoo and
have compiled the 2.6.31 kernel, enabling btrfs.
Now I have 2 partitions (on 2 different sata disks) that are free for me to
play with, each about 375 gb in size. I wanted to create a "raid1" volume
using these two partitions, so I did:
# mkfs.btrfs -d raid1 /dev/sda5 /dev/sdb5
# mount