代码搜索:extracts
找到约 800 项符合「extracts」的源代码
代码结果 800
www.eeworm.com/read/250015/4443444
tar-extracts-file
touch foo
tar cf foo.tar foo
rm foo
busybox tar xf foo.tar
test -f foo
www.eeworm.com/read/227259/4776840
tar-extracts-file
touch foo
tar cf foo.tar foo
rm foo
busybox tar xf foo.tar
test -f foo
www.eeworm.com/read/295117/3912334
tar-extracts-file
touch foo
tar cf foo.tar foo
rm foo
busybox tar xf foo.tar
test -f foo
www.eeworm.com/read/428548/1959002
tar-extracts-file
touch foo
tar cf foo.tar foo
rm foo
busybox tar xf foo.tar
test -f foo
www.eeworm.com/read/418008/2095303
tar-extracts-file
touch foo
tar cf foo.tar foo
rm foo
busybox tar xf foo.tar
test -f foo
www.eeworm.com/read/250015/4443435
tar-extracts-multiple-files
touch foo bar
busybox tar cf foo.tar foo bar
rm foo bar
busybox tar -xf foo.tar
test -f foo
test -f bar
www.eeworm.com/read/250015/4443436
tar-extracts-all-subdirs
# FEATURE: CONFIG_FEATURE_TAR_CREATE
mkdir -p foo/{1,2,3}
mkdir -p foo/1/{10,11}
mkdir -p foo/1/10/{100,101,102}
tar cf foo.tar -C foo .
rm -rf foo/*
busybox tar xf foo.tar -C foo ./1/10
find foo | so
www.eeworm.com/read/250015/4443441
tar-extracts-to-standard-output
echo foo > foo
tar cf foo.tar foo
cat foo.tar | busybox tar Ox | cmp foo -
www.eeworm.com/read/227259/4776832
tar-extracts-multiple-files
touch foo bar
busybox tar cf foo.tar foo bar
rm foo bar
busybox tar -xf foo.tar
test -f foo
test -f bar
www.eeworm.com/read/227259/4776837
tar-extracts-to-standard-output
echo foo > foo
tar cf foo.tar foo
cat foo.tar | busybox tar Ox | cmp foo -