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

  1. #! /bin/sh
  2. # Append was just not working.
  3.  
  4. . ./preset
  5. . $srcdir/before
  6.  
  7. set -e
  8. touch file1
  9. touch file2
  10. tar cf archive file1
  11. tar rf archive file2
  12. tar tf archive
  13.  
  14. out="\
  15. file1
  16. file2
  17. "
  18.  
  19. . $srcdir/after
  20.