Hier mal ein schnelles Beispiel wie ich meine Daten (vom Handy) auf einen Server mittels rsync kopiere.

        SRCP="Backup DCIM Pictures Documents Ringtones DJI/dji.go.v4/DJI* timesheeter_*"

        for d in $SRCP ; do
        #       echo $d 
        rsync --size-only --exclude "*.tmp" --exclude ".thumbnails" --progress -rvH /sdcard/$d knut@10.0.0.10:3tsicherung
        done

        SRCP="upass dom reverse speedtest-cli"
        for d in $SRCP ; do
        #       echo $d
        rsync --size-only --exclude "*.tmp" --exclude ".thumbnails" --progress -rvH /data/data/com.termux/files/usr/bin/$d knut@10.0.0.10:3tsicherung/bin/
        done