mirror of
https://git.savannah.gnu.org/git/tar.git
synced 2026-04-22 01:20:43 +00:00
16 lines
227 B
Bash
Executable File
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
|