copy folder content to another folder linux code example
Example 1: copy folders linux
cp -R source_dir destination_dir
cp -R /etc /etc_backup
Example 2: how to copy the files of a folder to another folder linux
cp -a /source/. /dest/
Example 3: copy contents of directory to another directory linux
cp -a /source/. /dest/
Example 4: linux copy folder with files
cp -R path_to_source path_to_destination/
Example 5: linux make a copy of a folder in another foldedr
$ scp -r <source_folder> <destination_user>@<destination_host>:<path>