home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Unix System Administration Handbook 1997 October
/
usah_oct97.iso
/
gnu
/
tar.txt
/
tar-1.12
/
tests
/
delete01.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1997-04-25
|
265b
|
19 lines
#! /bin/sh
# Deleting a member after a big one was destroying the archive.
. ./preset
. $srcdir/before
set -e
genfile -l 50000 > file1
genfile -l 1024 > file2
tar cf archive file1 file2
tar f archive --delete file2
tar tf archive
out="\
file1
"
. $srcdir/after