pixelflut/start.sh

8 lines
159 B
Bash

#!/bin/bash
maxCount=10
fileName=ctdo.png
for i in $( seq 1 $maxCount); do
echo starting $i of $maxCount
python3 eh18-image.py $fileName $i $maxCount &
done