[bash] - create X folders with a TXT file inside each
for i in {1..2000} do mkdir $i cd $i touch $i.txt echo "hello world" >> $i.txt cd .. done