17 lines
231 B
Bash
Executable File
17 lines
231 B
Bash
Executable File
#! /bin/sh
|
|
# Ensure that TAR_OPTIONS works in conjunction with old-style options.
|
|
|
|
. ./preset
|
|
. $srcdir/before
|
|
|
|
set -e
|
|
echo > file1
|
|
TAR_OPTIONS=--numeric-owner tar chof archive file1
|
|
tar tf archive
|
|
|
|
out="\
|
|
file1
|
|
"
|
|
|
|
. $srcdir/after
|