Skip to content

Commit

Permalink
fix: spellcheck
Browse files Browse the repository at this point in the history
prevent wordspliting
  • Loading branch information
meo-pill committed Jan 6, 2025
1 parent 10a5a91 commit a9613f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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!"
Expand Down

0 comments on commit a9613f0

Please sign in to comment.