File size: 397 Bytes
3dc126b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

:<<!
Preparing simulation data.
log_process: process job traces.
vc_dict_generator: generate VC configurations.
!

# clusters=('Venus' 'Earth' 'Saturn' 'Uranus' 'Philly')
clusters=('Venus' 'Philly')


for cluster in ${clusters[@]}; do
    echo "Parsing ${cluster}"

    python log_process.py -c=${cluster}
    
    python vc_dict_generator.py -c=${cluster} -d='Sept'
done

echo 'Done'