2012-11-28 17:15:12 +00:00
|
|
|
#!/usr/bin/env python
|
2016-04-12 22:52:16 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
|
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
|
|
|
# Copyright (C) 2015-2016 Tobias Gruetzmacher
|
|
|
|
"""Remove all lines after a given marker line."""
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
|
2012-11-28 17:15:12 +00:00
|
|
|
import fileinput
|
|
|
|
import sys
|
|
|
|
|
2016-04-12 22:52:16 +00:00
|
|
|
|
2012-11-28 17:15:12 +00:00
|
|
|
def main(args):
|
2013-01-09 21:26:00 +00:00
|
|
|
"""Remove lines after marker."""
|
2012-11-28 17:15:12 +00:00
|
|
|
filename = args[0]
|
|
|
|
marker = args[1]
|
|
|
|
for line in fileinput.input(filename, inplace=1):
|
|
|
|
print(line.rstrip())
|
|
|
|
if line.startswith(marker):
|
|
|
|
break
|
|
|
|
|
2016-04-12 22:52:16 +00:00
|
|
|
|
2012-11-28 17:15:12 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main(sys.argv[1:])
|