forked from extern/nushell
bff81f24aa
* Autogenerate missing docs * Update ansi.md * Rename question mark command docs * Delete empty?.md
393 B
393 B
cp
Copy files.
Usage
> cp <src> <dst> {flags}
Parameters
<src>
the place to copy from<dst>
the place to copy to
Flags
- -h, --help: Display this help message
- -r, --recursive: copy recursively through subdirectories
Examples
Copy myfile to dir_b
> cp myfile dir_b
Recursively copy dir_a to dir_b
> cp -r dir_a dir_b