rsync -av --progress source_folder/* dest_folder/ --exclude folder_to_exclude/ -n
Use -n
for dry run to see what will be copied, then remove -n
to do real copy.
rsync -av --progress source_folder/* dest_folder/ --exclude folder_to_exclude/ -n
Use -n
for dry run to see what will be copied, then remove -n
to do real copy.