Explorar el Código

Initial revision

Paul Eggert hace 28 años
padre
commit
8c070ff669
Se han modificado 1 ficheros con 15 adiciones y 0 borrados
  1. 15 0
      tests/extrac02.sh

+ 15 - 0
tests/extrac02.sh

@@ -0,0 +1,15 @@
+#! /bin/sh
+# Could not extract symlinks over an existing file.
+
+. ./preset
+. $srcdir/before
+
+set -e
+touch file
+ln -s file link 2> /dev/null || ln file link
+tar cf archive link
+rm link
+touch link
+tar xf archive
+
+. $srcdir/after