summaryrefslogtreecommitdiff
path: root/monitor-rebuild
blob: 21f0f5411496386d17cbd0c67e6af75ccc07c5ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/python3

import sys


while True:
  f = open(sys.argv[1])

  while True:
    x = f.readline()
    if not x:
      break
    print("got line:", x)