copy folder and contents linux debian code example
Example 1: copy folders linux
cp -R source_dir destination_dir
#example
cp -R /etc /etc_backup
Example 2: linux copy folder with files
cp -R path_to_source path_to_destination/
cp -R source_dir destination_dir
#example
cp -R /etc /etc_backup
cp -R path_to_source path_to_destination/