hi there,
i am fighting against my unix box to be able to copy a directory and replace the destination if already existing.
i'm using "Bash"
i use:
what this will do is that it will create a directory like this:
(assuming destination/dest_directory already exists)
and i want:
if you know how to obtain the last result please let me know, because i wont be able to sleep until then! lol
thank you
best regards
bilibytes
i am fighting against my unix box to be able to copy a directory and replace the destination if already existing.
i'm using "Bash"
i use:
Code:
cp -fR /source/src_directory /destination/dest_directory
(assuming destination/dest_directory already exists)
Code:
/destination/dest_directory/dest_directory
Code:
/destination/dest_directory
thank you
best regards
bilibytes
Comment