Scheduler
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
src
getMissingFiles.py
Go to the documentation of this file.
1
#! /usr/bin/python
2
3
import
os
4
import
re
5
import
sys
6
7
with open(
"data/sorted"
)
as
f:
8
counter = 1;
9
for
line
in
f:
10
if
not
line.startswith(
"configuration"
):
11
continue
;
12
while
not
re.match(
r"^configuration0*"
+ str(counter), line):
13
print
counter
14
counter += 1
15
counter += 1
Generated on Sun Nov 26 2017 17:01:35 for Scheduler by
1.8.11