]> Dogcows Code - chaz/tar/blob - scripts/tarcat
Concatenate multivolume archives
[chaz/tar] / scripts / tarcat
1 #! /bin/sh
2 # Usage: tarcat volume1 volume2 ...
3 # concatenates a GNU tar multi-volume archive into a single tar archive.
4 # Author: Bruno Haible <bruno@clisp.org>
5
6 cat "$1"
7 shift
8 for f
9 do
10 dd skip=1 if="$f"
11 done
This page took 0.038992 seconds and 5 git commands to generate.