home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Unix System Administration Handbook 1997 October
/
usah_oct97.iso
/
gnu
/
tar.txt
/
tar-1.12
/
tests
/
append.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1997-04-25
|
199b
|
20 lines
#! /bin/sh
# Append was just not working.
. ./preset
. $srcdir/before
set -e
touch file1
touch file2
tar cf archive file1
tar rf archive file2
tar tf archive
out="\
file1
file2
"
. $srcdir/after