10 lines
304 B
Bash
Executable File
10 lines
304 B
Bash
Executable File
for i in {1..1000000}
|
|
do
|
|
if [ $i -eq 1 ]
|
|
then
|
|
echo "This is a file that contains 1,000,000 lines of text for encryption testing" > somejunk_1000000.txt
|
|
else
|
|
echo "This is a file that contains 1,000,000 lines of text for encryption testing" >> somejunk_1000000.txt
|
|
fi
|
|
done
|