mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 17:03:45 +01:00
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
|
||
|
```
|
||
|
|