I am new to unix and I am starting to get my head around it slowly. I would like to know how I can create multiple files within an folder in my directory. Untill now I was doing it manually one by one. I was using the following code:
echo 'random text here' > newfile1.txt
I would like to create a script that will do the following:
new file x n
newfile1.txt
newfile2.txt
newfile3.txt
newfilen.txt
I would like to have some dummy text inside the files to. I am learning vim and bash.
Thank You