exC: make script executable
This commit is contained in:
parent
12e1c98f6f
commit
f2e462842e
10
exercises/exerciseC/run_with_all_configurations.sh
Normal file → Executable file
10
exercises/exerciseC/run_with_all_configurations.sh
Normal file → Executable file
|
@ -1,9 +1,13 @@
|
||||||
# This is bash
|
#!/bin/bash
|
||||||
# It runs the python script multiple times with different arguments
|
set -ex
|
||||||
|
|
||||||
|
# This is a bash script.
|
||||||
|
# It runs the python program multiple times with different arguments.
|
||||||
|
|
||||||
for i in {1..5} # Number of processes
|
for i in {1..5} # Number of processes
|
||||||
do
|
do
|
||||||
for j in {1..5} # Number of threads
|
for j in {1..5} # Number of threads
|
||||||
do
|
do
|
||||||
python process_images.py $i $j images/*
|
python process_images.py $i $j images/*
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue