Добрый день. Помогите плз допилить код чтобы в tar.gz запаковывалась каждая директория
#!/bin/sh
#mkdir -p "/mnt/archive/`date +%F`"
start=$(date +%s)
rsync -e ssh --exclude 'distributive' -a root@192.168.1.100:/mnt/data/test0 /mnt/archive/test0
rsync -e ssh --exclude 'distributive' -a root@192.168.1.100:/mnt/data/test1 /mnt/archive/test1
rsync -e ssh --exclude 'distributive' -a root@192.168.1.100:/mnt/data/test2 /mnt/archive/test2
rsync -e ssh --exclude 'distributive' -a root@192.168.1.100:/mnt/data/test3 /mnt/archive/test3
rsync -e ssh --exclude 'distributive' -a root@192.168.1.100:/mnt/data/test4 /mnt/archive/test4
finish=$(date +%s)
echo "`date` - full_backup processing: $((finish - start)) seconds">>backup.log