[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Copying Directories
- Subject: Re: [cobalt-users] Copying Directories
- From: "Fathi Said" <fathi@xxxxxx>
- Date: Sat Dec 25 16:21:06 1999
> 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