Scheduler
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