Mention the opengroup sed reference, add a check which is disabled at present.
[oweals/busybox.git] / testsuite / tar / tar-handles-multiple-X-options
1 touch foo
2 touch bar
3 tar cf foo.tar foo bar
4 echo foo > foo.exclude
5 echo bar > bar.exclude
6 rm foo bar
7 busybox tar xf foo.tar -X foo.exclude -X bar.exclude
8 test ! -f foo -a ! -f bar