From bcf523b0dcd7125721d7f2cda9bdee8ca1c38197 Mon Sep 17 00:00:00 2001 From: "Begerad, Stefan" Date: Mon, 28 Aug 2023 13:43:27 +0200 Subject: [PATCH] fix(bin): adjust dload.sh for file management --- bin/dload.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/dload.sh b/bin/dload.sh index a95ad8f..edb0b76 100644 --- a/bin/dload.sh +++ b/bin/dload.sh @@ -41,14 +41,14 @@ echo "csvFileLower: $csvFileLower" csvFileLowerPath=${unzipDir}/$csvFileLower echo "csvFileLowerPath: $csvFileLowerPath" sed '1s/\(.*\)/\L\1/' $csvFilePath > $csvFileLowerPath -rm $csvFilePath +#TODO rm $csvFilePath # csvFileComma=${csvFileNoExt}-dot-lower-comma.csv echo "csvFileComma: $csvFileComma" csvFileCommaPath=${unzipDir}/$csvFileComma echo "csvFileCommaPath: $csvFileCommaPath" sed -E 's/(");(")/\1\,\2/g' $csvFileLowerPath > $csvFileCommaPath -rm $csvFileLowerPath +#TODO rm $csvFileLowerPath # ZHV_CSV_OUTPUT="$3" echo "ZHV_CSV_OUTPUT: $ZHV_CSV_OUTPUT"