blob: f4165f9240917e9ffd540f21becf5808d5d19946 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
#!/bin/bash
#
set -xe
PROGRAM="$(basename $0)"
usage(){
echo "$PROGRAM <hash>"
}
cdaw(){
pwd > tmp_holder
}
cdaw
CURDIR="$(cat tmp_holder)"
TMPWD="/tmp/rjs"
if [ ! -d "$TMPWD" ]
then
mkdir -p "$TMPWD"
if [ $? -ne 0 ]
then
echo "Can't create $TMPWD dir"
exit 1
fi
fi
MAPSDIR="$AK_WORKDIR/fmp"
CHKDIR="$AK_WORKDIR/ftr"
cd $CHKDIR
if [ $? -ne 0 ]
then
echo "Can't get dir"
exit 1
fi
if [ ! -z $1 ]
then
MAPSFILE="$1"
echo '#!/bin/bash' > script
# We create a script to copy all the chunks and rename them to their serialized
# name produced by split when we splitted the file
awk '{print "cp '$CHKDIR'/"$1" '$TMPWD'/"$2" "}' $MAPSDIR/$MAPSFILE| grep chk >> script
bash script
if [ $? -ne 0 ]
then
echo "Error executing copy script"
exit 1
fi
rm script
cd $TMPWD
echo "$PWD"
# Final name we are going to rename to
OUTPUT="$(tail -n1 $MAPSDIR/$MAPSFILE | awk '{print $2}')"
echo $OUTPUT
# We grep the MAPSFILE for chk filenames in lines and we print them all in
# one line so the first `cat` will concatenate all chunks to OUTPUT
cat $(echo -n $(cat $MAPSDIR/$MAPSFILE|grep chk|awk '{print $2" "}'|tr -d '\n')) > $OUTPUT
# We check if everything is okay
sha512sum -c $MAPSDIR/$MAPSFILE
if [ $? -ne 0 ]; then
_ak_log_error "Error while checking sums"
exit 1
fi
mv $OUTPUT $CURDIR
rm -rf "$TMPWD"
rm $CURDIR/tmp_holder
else
usage
fi
|