I need to create 8 txt files wiht name text[x], where X is number from 1 to 8. Is there any simple construction to do that? I thought to use iteration. The simple method like:
touch text1.txt text2.txt text3.txt text4.txt text5.txt text6.txt text7.txt text8.txt
is not acceptable.
touch text{1..8}.txt