Gostaria de saber se posso ter rsync
automaticamente fazendo backup dos diretórios AND dos arquivos de destino, se eles já existirem.
Funciona com arquivos para mim, mas não diretórios
#this will rename file.txt file.txt_bkp if a file.txt exists in target_dir
rsync -avrI --backup --suffix='_bkp' source_dir/file.txt target_dir
#the bellow DOES NOT rename some_dir to some_dir_bkp if some_dir exists in target_dir
rsync -avrI --backup --suffix='_bkp' source_dir/some_dir target_dir
Como eu posso fazer funcionar para diretórios também?
Tags rsync