mirror of
https://github.com/sheumann/hush.git
synced 2025-01-16 09:30:29 +00:00
8 lines
156 B
Plaintext
8 lines
156 B
Plaintext
mkdir foo
|
|
touch foo/bar
|
|
tar cf foo.tar foo
|
|
rm -rf foo
|
|
echo foo/bar >foobar.exclude
|
|
busybox tar xf foo.tar foo -X foobar.exclude
|
|
test -d foo -a ! -f foo/bar
|