X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=scripts%2Ftarcat;h=5c2671a1a77ee78656e409ac6a0d9652c46a14a0;hb=85890103aef8e8812658656d798bd3b253ad0f99;hp=9c8fed1cd20dec238578af2784e63712b18cf859;hpb=7e51be5fe2f1c8c567144e3d27801f3f665f525a;p=chaz%2Ftar diff --git a/scripts/tarcat b/scripts/tarcat index 9c8fed1..5c2671a 100755 --- a/scripts/tarcat +++ b/scripts/tarcat @@ -1,11 +1,42 @@ #! /bin/sh # Usage: tarcat volume1 volume2 ... # concatenates a GNU tar multi-volume archive into a single tar archive. -# Author: Bruno Haible +# Author: Bruno Haible , Sergey Poznyakoff + +# dump_type FILE [N] +# Print type character from block N (default 0) of tar archive FILE +dump_type() { + dd if="$1" skip=${2:-0} bs=512 count=1 2>/dev/null | + tr '\0' ' ' | + cut -c157 +} + +case `dump_type "$1"` in + [gx]) PAX=1;; +esac cat "$1" shift for f do - dd skip=1 if="$f" + SKIP=0 + T=`dump_type "$f"` + if [ -n "$PAX" ]; then + if [ "$T" = "g" ]; then + # Global extended header.... 2 blocks + # Extended header........... 2 blocks + # Ustar header.............. 1 block + # FIXME: This calculation is will fail for very long file names. + SKIP=5 + fi + else + if [ "$T" = "V" ]; then + T=`dump_type "$f" 1` + fi + if [ "$T" = "M" ]; then + SKIP=$(($SKIP + 1)) + fi + fi + dd skip=$SKIP if="$f" done +