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