Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tar-extracts-multiple-files « tar « testsuite - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46701dc3faa5c719b7ebc0cd55efe0d05b8f9129 (plain)
1
2
3
4
5
6
touch foo bar
tar cf foo.tar foo bar
rm foo bar
busybox tar -xf foo.tar
test -f foo -a -f bar
exit 99;