2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-01-22 18:05:21 +00:00
nushell/docs/commands/cp.md

28 lines
393 B
Markdown
Raw Normal View History

# 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
```