rsync backup com renomear quando o destino já existir para arquivos e diretórios

0

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?

    
por statquant 28.02.2018 / 08:40

0 respostas

Tags