aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-sm-filejoiner
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-07-16 05:24:52 +0300
committerkaotisk <kaotisk@arching-kaos.org>2024-07-16 05:24:52 +0300
commit38ad449f562af439640563112e2dc38fe2a960cd (patch)
treeb3d957e61d0de180e258d0479a9d11e51caa55d8 /bin/ak-sm-filejoiner
parent887f912491cdeaa1c1a8b4d13d48c46909f391b7 (diff)
downloadarching-kaos-tools-38ad449f562af439640563112e2dc38fe2a960cd.tar.gz
arching-kaos-tools-38ad449f562af439640563112e2dc38fe2a960cd.tar.bz2
arching-kaos-tools-38ad449f562af439640563112e2dc38fe2a960cd.zip
Moved `ak-sm-files` to module `smfiles`
Also, cleaning up the `bin/` directory: - ak-sm-filejoiner and - ak-sm-filesplitter are now part of `lib/_ak_smfiles` Updated README as well removing the above scripts and fixing the typo: - sm-files -> smfiles from the modules list. Note that the module part, as well as the `files` module are going to be removed in favor of `ak-fs`. Stay tuned for that. To update, do: ``` git pull ./update.sh ```
Diffstat (limited to 'bin/ak-sm-filejoiner')
-rwxr-xr-xbin/ak-sm-filejoiner88
1 files changed, 0 insertions, 88 deletions
diff --git a/bin/ak-sm-filejoiner b/bin/ak-sm-filejoiner
deleted file mode 100755
index f4165f9..0000000
--- a/bin/ak-sm-filejoiner
+++ /dev/null
@@ -1,88 +0,0 @@
-#!/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