wolfssl-examples/wolfCLU/tests/somejunk/somejunk_100.sh

10 lines
280 B
Bash
Executable File

for i in {1..100}
do
if [ $i -eq 1 ]
then
echo "This is a file that contains 100 lines of text for encryption testing" > somejunk_100.txt
else
echo "This is a file that contains 100 lines of text for encryption testing" >> somejunk_100.txt
fi
done