blob: b7ab2776f98007842325906f0c966b1590947463 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
#
# extract the combined package (created with comb)
# into the individual components.
# move the file to a new name with an extension
rm -rf $1.cvswrap
mv $1 $1.cvswrap
# untar the file
if `gzip -t $1.cvswrap > /dev/null 2>&1`
then
gzcat -d $1.cvswrap | gnutar --preserve --sparse -x -f -
else
gnutar --preserve --sparse -x -f $1.cvswrap
fi
# remove the original
rm -rf $1.cvswrap
|