Categories
How to create a large number of files on linux mint?
Hello, if anyone knows, please tell me, is it possible somehow to create 1000 doxc format documents through the terminal or utility, if possible, please tell me how. Thank you!
Answer the question
In order to leave comments, you need to log in
in loop x < 1000 touch $x.doxc
#!/bin/bash cd /'путь где создать' for ((x=1; x < 1000; x++)) do touch $x.doxc done
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question