forked from Gondal-SaadAbdullah/MastersThesis_EWC_CF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessBashScript.py
57 lines (43 loc) · 2.04 KB
/
processBashScript.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# takes a bash script that runs experiments. Analyzes each command line for a field with .csv in it, and checks if that file exists. If it does, the line is not copied to stdout
# in this way, a new bash script is generated that contains only experiments that were not done before
# param 1. prefix to add before.bash ion new scripts
# params 2-\infty: script names
import os, os.path as osp ;
import sys ;
def processOneScript(scriptName,outstream):
d = [l for l in file(scriptName,"r").readlines()] ;
missingIDs = {} ;
for line in d:
fields = line.strip().split(" ") ;
foundCsv = False ;
csvTag = "" ;
for f in fields:
if f.find(".csv") != -1:
csvTag = f;
break ;
if csvTag == "":
continue ;
else:
if osp.exists(csvTag)==False or (osp.exists(csvTag)==True and len(file(csvTag,"r").readlines()) < 20):
expID = csvTag.replace(".csv","").replace("_D1D1","").replace("_D2D2","").replace("_D2D-1","").replace("_D2D1","") ;
missingIDs[expID] = True ;
for line in d:
fields = line.strip().split(" ") ;
foundCsv = False ;
csvTag = "" ;
for f in fields:
if f.find(".csv") != -1:
csvTag = f;
break ;
if csvTag == "":
outstream.write(line) ;
else:
expID = csvTag.replace(".csv","").replace("_D1D1","").replace("_D2D2","").replace("_D2D-1","").replace("_D2D1","") ;
if expID in missingIDs:
outstream.write(line) ;
if __name__ == "__main__":
for scriptName in sys.argv[2:]:
print "script is ", scriptName, "prefix is", sys.argv[1] ;
outfile = file(scriptName.replace(".bash",sys.argv[1]+".bash"),"w") ;
processOneScript (scriptName,outfile) ;
outfile.close() ;