From 7a857c57f9c2bb850686aa72019ef6b2c8eb1f37 Mon Sep 17 00:00:00 2001 From: zacharias Date: Sun, 20 Apr 2025 16:02:33 +0200 Subject: [PATCH] added a " to the script to solve a bug --- comp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comp.sh b/comp.sh index ca6fec1..dee8af7 100644 --- a/comp.sh +++ b/comp.sh @@ -32,6 +32,6 @@ TOTAL_SIZE=$(du -sb "${INPUT_FOLDER}" | awk '{print $1}') # Run compression with progress bar echo "Compressing '${INPUT_FOLDER}' to ' ${OUTPUT_FILE}'..." -tar -cf - "${INPUT_FOLDER} | pv -s "${TOTAL_SIZE}" | pigz > "${OUTPUT_FILE}" +tar -cf - "${INPUT_FOLDER}" | pv -s "${TOTAL_SIZE}" | pigz > "${OUTPUT_FILE}" echo "Done!"