mirror of
https://github.com/unanmed/ginka-generator.git
synced 2026-05-14 04:41:12 +08:00
8 lines
92 B
Bash
8 lines
92 B
Bash
i=$1
|
|
while true
|
|
do
|
|
sh gan.sh "$i"
|
|
i=$((i+1))
|
|
echo "第 $i 次循环完成"
|
|
done
|