home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / ot_unarchive.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1997-10-09  |  477b  |  25 lines

  1. #!/bin/sh
  2. #
  3. # %W% %G%
  4. #
  5. # Script to uncompress and unarchive a repository or project archive,
  6. # created with ot_archive.sh.
  7. #
  8. # Assumes that 'gzip' and 'tar' are in the current search path.
  9. #
  10. if [ $# != 1 ]; then
  11.     echo 1>&2 "Usage: ot_unarchive <sourceFile>"
  12.     exit 1
  13. fi
  14.  
  15. src=$1
  16.  
  17. echo "Uncompressing and untarring archive $src ..."
  18. echo "(working directory is `pwd`)"
  19. if gzip -c -d $src | tar xf -; then :; else
  20.     exit 1
  21. fi
  22.  
  23. echo "Ready."
  24. exit 0
  25.