Hi folks, why is this happening?
$ tar --create --file test.tar --directory /home/pvrabec/tmp/ --listed-incremental list.inc --wildcards --exclude-from list.exclude test $ tar tvf test.tar -rw-rw-r-- pvrabec/pvrabec 0 2007-02-06 10:59 test/dir1/xxx (and nothing else) but it works ok without "--wildcards" option $ tar --create --file test.tar --directory /home/pvrabec/tmp/ --listed-incremental list.inc --exclude-from list.exclude test $ tar tvf test.tar drwxrwxr-x pvrabec/pvrabec 19 2007-02-06 11:11 test/ drwxrwxr-x pvrabec/pvrabec 6 2007-02-06 10:59 test/dir1/ drwxrwxr-x pvrabec/pvrabec 1 2007-02-06 10:59 test/dir2/ drwxrwxr-x pvrabec/pvrabec 6 2007-02-06 11:11 test/dir3/ -rw-rw-r-- pvrabec/pvrabec 0 2007-02-06 10:59 test/dir1/xxx $ cat list.exclude test/dir3/*
