up vote 2 down vote favorite
share [g+] share [fb]

How do I get the latest 100MB from a text log on Linux? Is there a tool for it, or could you point me on a script?

I have no programming experience on Shell Scripting, Perl or Python, and I don't want to install mono so I can write it in C#.

Thanks!!

Yvan Janssens

link|improve this question

Belongs on SuperUser? – Bob Sep 9 '10 at 19:48
feedback

2 Answers

up vote 7 down vote accepted

You can try this :

tail -c 104857600 yourFile

or if you're more confortable:

tail -c $[1024*1024*100] yourFile

Resources :

link|improve this answer
feedback

Use tail:

$ tail -c 104857600 your_file_name

Where 104857600 is 100MB in bytes.

Or:

$ tail -b 204800 your_file_name

Where 204800 is size in 512-byte block.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.