mirror of
https://github.com/nushell/nushell.git
synced 2024-11-30 04:14:17 +01:00
bff81f24aa
* Autogenerate missing docs * Update ansi.md * Rename question mark command docs * Delete empty?.md
28 lines
393 B
Markdown
28 lines
393 B
Markdown
# cp
|
|
Copy files.
|
|
|
|
## Usage
|
|
```shell
|
|
> 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
|
|
```shell
|
|
> cp myfile dir_b
|
|
```
|
|
|
|
Recursively copy dir_a to dir_b
|
|
```shell
|
|
> cp -r dir_a dir_b
|
|
```
|
|
|