Files
tar/tests/extrac02.sh
1997-01-22 00:53:35 +00:00

16 lines
227 B
Bash
Executable File

#! /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