This is just something I thought I would put up. I was working on some scripting demo’s and we had to be able to use test files.
There is a nice quick one-liner below that can easily create 10 empty files.
for i in {1..10};do touch $i.txt;i=i+1;done
This is a simple bash script one liner to create these, you could also put this as an alias if you need to use this on repeated occasions.