home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / gnu / tar.txt / tar-1.12 / tests / extrac01.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1997-04-25  |  218b  |  14 lines

  1. #! /bin/sh
  2. # There was a diagnostic when directory already exists.
  3.  
  4. . ./preset
  5. . $srcdir/before
  6.  
  7. set -e
  8. mkdir directory
  9. touch directory/file
  10. tar cf archive directory || exit 1
  11. tar xf archive || exit 1
  12.  
  13. . $srcdir/after
  14.