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 >
Linux/UNIX/POSIX Shell Script  |  1997-04-25  |  265b  |  19 lines

  1. #! /bin/sh
  2. # Deleting a member after a big one was destroying the archive.
  3.  
  4. . ./preset
  5. . $srcdir/before
  6.  
  7. set -e
  8. genfile -l 50000 > file1
  9. genfile -l 1024 > file2
  10. tar cf archive file1 file2
  11. tar f archive --delete file2
  12. tar tf archive
  13.  
  14. out="\
  15. file1
  16. "
  17.  
  18. . $srcdir/after
  19.