copy and paste folder using command line ubuntu code example
Example 1: create and copy folder in ubuntu
$ cp -rv /source_directory /destination_directory
# r = copy directories recursively
# v = explain what is being done
Example 2: copy folder in ubuntu
cp -r /path/to/directory /path/to/location/new-name