Se eu entendi sua intenção corretamente, tudo o que você precisa fazer é anexar uma barra ao seu primeiro argumento de rsync
. Isto é, em vez de escrever
rsync -zrahvWt --remove-source-files ~/Documents/test3/source-DRV ~/Documents/test3/dest-T
escreva
rsync -zrahvWt --remove-source-files ~/Documents/test3/source-DRV/ ~/Documents/test3/dest-T
Editar Eu modifiquei os comandos acima de acordo com os comentários do OP em relação a responder sua própria pergunta.
Com relação aos parâmetros de rsync
:
- -z: compress file data during the transfer
- -r: recursive: To copy the folders under the current folder and its files, not just the files under the current folder
- -a: preserve almost everything (dates, permissions, etc.)
- -h: output numbers in a human-readable format
- -v: verbose: to print more details of the process on the screen
- -W: copy the whole file, not update the difference of data only.
More details can be found by running
man 1 rsync
.