Explorar el Código

Initial revision

Paul Eggert hace 28 años
padre
commit
d7010d945a
Se han modificado 1 ficheros con 13 adiciones y 0 borrados
  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