In reoback.pl Line 194 is the command for tar in the wrong sequence. This is code:
open PROC, "$TARCMD $fileName -T $listName.incl -X $listName.excl 2>&1|";
and it should be:
open PROC, "$TARCMD $fileName -X $listName.excl -T $listName.incl 2>&1|";
The excludes must stand before the includet Files.
Than it works great again ;-)
Kind regards