Script Shell Linux

Hello,

Please, how can I complete this script:

Thank you

i=$(($i + 1))
touch file${i}.txt
1 Like

Or just

touch {1..10}
1 Like