Concatenate multivolume archives

This commit is contained in:
Sergey Poznyakoff
2004-11-26 19:08:14 +00:00
parent dcdbe18968
commit c8b0fd28c2

11
scripts/tarcat Executable file
View File

@@ -0,0 +1,11 @@
#! /bin/sh
# Usage: tarcat volume1 volume2 ...
# concatenates a GNU tar multi-volume archive into a single tar archive.
# Author: Bruno Haible <bruno@clisp.org>
cat "$1"
shift
for f
do
dd skip=1 if="$f"
done