2024-heraklion-parallel-python/exercises/exerciseC/run_with_all_configurations.sh
2024-08-29 17:30:29 +02:00

8 lines
170 B
Bash

# This is bash, it executes the python script multiple times
for i in {1..10}
do
for j in {1..10}
do
python process_images.py $i $j images/*
done
done