make a copy of folder with in file ubuntu code example
Example: create and copy folder in ubuntu
$ cp -rv /source_directory /destination_directory
# r = copy directories recursively
# v = explain what is being done
$ cp -rv /source_directory /destination_directory
# r = copy directories recursively
# v = explain what is being done