From b2cf655dfbfd47e0aa17bea96053e5bb357ad803 Mon Sep 17 00:00:00 2001 From: Julian Freeman Date: Thu, 26 Feb 2026 17:57:43 -0400 Subject: [PATCH] optimize for hhd --- gen_combined.bat | 2 +- gen_combined.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gen_combined.bat b/gen_combined.bat index 2f95142..fac3f0e 100644 --- a/gen_combined.bat +++ b/gen_combined.bat @@ -13,7 +13,7 @@ set "COMBINED_FILE=%FILE_BASENAME%.txt" if not exist "combined_files" mkdir "combined_files" echo Running rclone check ... -rclone check "%MD5_PATH%" "%TARGET_DIR%" --local-encoding "None" --exclude-from exclude-list.txt --checkfile md5 --combined "combined_files\%COMBINED_FILE%" +rclone check "%MD5_PATH%" "%TARGET_DIR%" --local-encoding "None" --exclude-from exclude-list.txt --checkfile md5 --transfers 1 --buffer-size 256M --checkers 8 --combined "combined_files\%COMBINED_FILE%" if %ERRORLEVEL% equ 0 ( echo Success: Saved to "combined_files\%COMBINED_FILE%" diff --git a/gen_combined.sh b/gen_combined.sh index e3cdc34..4b2aa7b 100644 --- a/gen_combined.sh +++ b/gen_combined.sh @@ -17,7 +17,7 @@ COMBINED_FILE="${FILE_BASENAME}.txt" mkdir -p "combined_files" echo "Running ./rclone check ..." -./rclone check "$MD5_PATH" "$TARGET_DIR" --local-encoding "None" --exclude-from "exclude-list.txt" --checkfile "md5" --combined "combined_files/$COMBINED_FILE" +./rclone check "$MD5_PATH" "$TARGET_DIR" --local-encoding "None" --exclude-from "exclude-list.txt" --checkfile "md5" --transfers 1 --buffer-size "256M" --checkers 8 --combined "combined_files/$COMBINED_FILE" if [ $? -eq 0 ]; then echo "Success: Saved to "combined_files/$COMBINED_FILE""