[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] Copying Directories



> With "cp" I can copy files. Can anybody tell me how can I copy directories??

Uuups.
Just found out how to do it, here is the solution to my own problem......

Just type in
<snip>
Uuups.
cp -f -r -p /sourcedir /destinationdir
</snip>
and all files should be copied (-p (parent) and -r (copy recursively) parameter make it possible).
-f is to overwrite existing files

Fathi