multipleRuns.sh 599 Bytes
Newer Older
1
2
3
#!/bin/bash

dir="/home/martini/malleability_benchmark/"
4
5
6
7
8
9
10

# Creates a directory with all possible and valid combinations of configuration files
#   that can be created from a given complex configuration file.
# Parameter 1: Complex configuration file name.
# Parameter 2: Common output name of the output configuration files. It will be appended an index to each of them.
#====== Do not modify these values =======

11
12
13
14
codeDir="Codes/"
execDir="Exec/"
ResultsDir="Results/"

15
16
complex_file=$1
output_name=$2
17
18
19
20
21

python3 $dir$execDir/PythonCodes/read_multiple.py $complex_file $output_name

echo "END TEST"