Today I am going to explain a small program on the pythonic equivalent of tail command in Linux
The logic is simple. We need to move to end of the file using the seek command. Get the total file size in bytes. Now fix the amount of data to be
displayed in one tail (here 20 windows). Let's iterate until we reach the beginning of the file in chunks of 1024 bytes and add it to a string.
Finally display the string.
Some explaination on the default methods used in the program,
1) seek:
move cusror to the specified postion and specified start index. Here i have used 2 to indicate the satrt index to be the EOF. 0 meanse BOF and 1 means the current cursor position.
2) tell:
returns the size of file in bytes.
Generally, this will locate the last 20 lines on the first or second pass through the loop. If your 74 character thing is actually accurate, you make the block size 2048 and you'll tail 20 lines almost immediately.
Written by Vivek Soundrapandi
Published Date: {{ article.pub_date }}
View all posts by: Vivek Soundrapandi