aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2022-12-15 06:37:41 +0200
committerkaotisk <kaotisk@arching-kaos.org>2022-12-15 06:37:41 +0200
commitddfd339bb23e8cec8c697ffbf02553629be166b4 (patch)
tree0cfb258565d7c9ead12048a2a9936570bafdaa21 /bin
parentc8138911d13855fa17e501cb148b99b5a4e4c85a (diff)
downloadarching-kaos-tools-ddfd339bb23e8cec8c697ffbf02553629be166b4.tar.gz
arching-kaos-tools-ddfd339bb23e8cec8c697ffbf02553629be166b4.tar.bz2
arching-kaos-tools-ddfd339bb23e8cec8c697ffbf02553629be166b4.zip
The test failed as sha512sum didn't successfully verified the resulted file
Diffstat (limited to 'bin')
-rwxr-xr-xbin/filejoiner30
1 files changed, 0 insertions, 30 deletions
diff --git a/bin/filejoiner b/bin/filejoiner
index 923cf01..88d965c 100755
--- a/bin/filejoiner
+++ b/bin/filejoiner
@@ -63,36 +63,6 @@ then
OUTPUT="$(tail -n1 $MAPSDIR/$MAPSFILE | awk '{print $2}')"
echo $OUTPUT
- #
- # Not sure about the line below. There is a bug persisting here from `cat` that separates with \n
- # each file
- #
- # It's said that the best way to do that is using `printf`
- #
- # https://stackoverflow.com/questions/51332070/bash-redirect-cat-to-file-without-newline
- #
- # We will need an amount of files so we can know beforehand how many %s will be outputed (same as the number of files)
- #
- # If we'd `grep chk $MAPSDIR/$MAPSFILE | wc -l` we would get the amount, right?
- # YES!!!
- #
- # So we would put out a new script
- # TODO
- #touch newscript.sh
- #echo 'set -xe' > newscript.sh
- #echo -n "printf \"" >> newscript.sh
- #NUMBER_OF_FILES="$(grep chk $MAPSDIR/$MAPSFILE | wc -l)"
- #i=0
- #while [ "$i" -lt "$NUMBER_OF_FILES" ]
- #do
- # i="$(expr $i + 1)"
- # echo -n "%s" >> newscript.sh
- #done
- #echo -n "%s" >> newscript.sh
- #echo -n "\" " >> newscript.sh
- #echo -n "$(cat $MAPSDIR/$MAPSFILE | grep chk | awk '{ print "\"$(cat " $2 ")\" " }'| tr -d '\n')" >> newscript.sh
- #echo -n ' > '$OUTPUT >> newscript.sh
- #sh newscript.sh
cat $(echo -n $(cat $MAPSDIR/$MAPSFILE|grep chk|awk '{print $2" "}'|tr -d '\n')) > $OUTPUT