Created
January 26, 2013 05:15
-
-
Save tierra/47d633b1fe8e33423993 to your computer and use it in GitHub Desktop.
Shorten large file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2.5 | |
from __future__ import with_statement | |
# also tested with Python 2.6 | |
import os, sys | |
if len(sys.argv) != 3: | |
print sys.argv[0] + ": Invalid number of arguments." | |
print "Usage: " + sys.argv[0] + " linecount filename" | |
print "to remove linecount lines from the end of the file" | |
exit(2) | |
number = int(sys.argv[1]) | |
file = sys.argv[2] | |
count = 0 | |
with open(file,'r+b') as f: | |
f.seek(0, os.SEEK_END) | |
end = f.tell() | |
while f.tell() > 0: | |
f.seek(-1, os.SEEK_CUR) | |
char = f.read(1) | |
if char != '\n' and f.tell() == end: | |
print "No change: file does not end with a newline" | |
exit(1) | |
if char == '\n': | |
count += 1 | |
if count == number + 1: | |
f.truncate() | |
print "Removed " + str(number) + " lines from end of file" | |
exit(0) | |
f.seek(-1, os.SEEK_CUR) | |
if count < number + 1: | |
print "No change: requested removal would leave empty file" | |
exit(3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment