From a9613f046fe22ffd8596d68055927315e8f6a815 Mon Sep 17 00:00:00 2001 From: meo Date: Mon, 6 Jan 2025 13:24:03 +0100 Subject: [PATCH] fix: spellcheck prevent wordspliting --- testing.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing.sh b/testing.sh index 45c5771..e25bd6c 100755 --- a/testing.sh +++ b/testing.sh @@ -126,13 +126,13 @@ mkdir -p $test_pool_data_size_path color_echo "$Cyan" "Creating 1000 files of 1KB each..." mkdir -p $test_pool_data_size_path/small for i in {1..1000}; do - dd if=/dev/urandom of=$test_pool_data_size_path/small/file$i.txt bs=1024 count=1 >> /dev/null 2>&1 + dd if=/dev/urandom of=$test_pool_data_size_path/small/file_"$i".txt bs=1024 count=1 >> /dev/null 2>&1 done color_echo "$Cyan" "Creating 5 file of 1GB each..." mkdir -p $test_pool_data_size_path/big for i in {1..5}; do - dd if=/dev/urandom of=$test_pool_data_size_path/big/file$i.txt bs=1024 count=1048576 >> /dev/null 2>&1 + dd if=/dev/urandom of=$test_pool_data_size_path/big/file_"$i".txt bs=1024 count=1048576 >> /dev/null 2>&1 done color_echo "$Green" "Files created!"