7 lines
75 B
Bash
7 lines
75 B
Bash
for i in {0..1000}
|
|
do
|
|
echo $i
|
|
./spline
|
|
mv plot_out.png plot_$i.png
|
|
done
|