mirror of
https://github.com/sheumann/hush.git
synced 2024-10-29 20:27:40 +00:00
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
|