4
0
Paul Eggert 28 жил өмнө
parent
commit
8c070ff669
1 өөрчлөгдсөн 15 нэмэгдсэн , 0 устгасан
  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