The shell script generates sequential numbers in bulk, very simple and convenient, can be used as numbering



for ((i=1; i<101; i++))
do
echo $i
Done

Generate consecutive numbers from 1 to 100



for ((i=10; i<190; i++))
do
echo $i
Done

Copy the code directly to the shell terminal to run.

as shown below

标签: shell, Numbers, Script, Batch, Generate

添加新评论