Browse Source

Initial revision

Paul Eggert 28 năm trước cách đây
mục cha
commit
d7010d945a
1 tập tin đã thay đổi với 13 bổ sung0 xóa
  1. 13 0
      tests/extrac01.sh

+ 13 - 0
tests/extrac01.sh

@@ -0,0 +1,13 @@
+#! /bin/sh
+# There was a diagnostic when directory already exists.
+
+. ./preset
+. $srcdir/before
+
+set -e
+mkdir directory
+touch directory/file
+tar cf archive directory || exit 1
+tar xf archive || exit 1
+
+. $srcdir/after