I want to sync all files and folders in my home directory expect for the ones that start with .
This is what I have done so far:
rsync -azPnv --delete /home/USER/ DESTINATION
In order to ignore hidden files, I guess that I have to utilize --exclude and --include as well but I am not sure how. Any ideas?