mirror of
https://github.com/unanmed/ginka-generator.git
synced 2026-05-14 21:01:12 +08:00
8 lines
108 B
Bash
8 lines
108 B
Bash
start=$1
|
|
end=$2
|
|
for ((i=start; i<=end; i=i+1))
|
|
do
|
|
sh gan.sh "$i"
|
|
echo "第 $i 次循环完成"
|
|
done
|