O
O
OneDeus2019-12-04 18:46:19
mint
OneDeus, 2019-12-04 18:46:19

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

1 answer(s)
S
SOTVM, 2019-12-05
@OneDeus

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 your question

Ask a Question

731 491 924 answers to any question