aboutsummaryrefslogtreecommitdiffstats
path: root/CVSROOT/unwrap
blob: 07b98289a09080b4aeecf35b6de2e492a778fd63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/sh
#
# $FreeBSD$
#
#   unwrap - extract the combined package (created with wrap)

# 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
    zcat -d $1.cvswrap | tar --preserve --sparse -x -f -
else
    tar --preserve -x -f $1.cvswrap
fi

# remove the original
rm -rf $1.cvswrap
* Update plaso to 20170930 Heimdallantoine2017-10-063-7/+14 * The output of tools like awk, date, sort, tr,... depends on the currenttijl2017-01-181-1/+2 * Update to 1.5.1antoine2016-10-262-4/+4