Add missing -e to echo

This commit is contained in:
drunkendog 2023-09-16 22:10:07 +01:00
parent b6dcb7c652
commit 50f1aa14ba
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ do
for _ in {1..10000} for _ in {1..10000}
do do
int_get=$RANDOM int_get=$RANDOM
echo "${int_get}\n$((int_get + 123))\n" >> "benchmark-program-1-${i}.cases" echo -e "${int_get}\n$((int_get + 123))\n" >> "benchmark-program-1-${i}.cases"
done done
done done