9 lines
179 B
Plaintext
9 lines
179 B
Plaintext
touch foo
|
|
touch bar
|
|
tar cf foo.tar foo bar
|
|
echo foo > foo.exclude
|
|
echo bar > bar.exclude
|
|
rm foo bar
|
|
busybox tar xf foo.tar -X foo.exclude -X bar.exclude
|
|
test ! -f foo -a ! -f bar
|