```sh
var = cp source target
```
This command copies the requested file or directory to the target location.<br>
If the source directory is not empty, its entire contents will be copied as well.
* *
**true** if the path was copied.
```sh
copied = cp ./file1.txt ./file2.txt
copied = cp ./source ./target
```