Looking for a lean windows application that will let me search through very large log files efficiently for specific error keywords, ideally with the ability to filter such keywords.
|
closed as off topic by Zoredache, rnxrx, Ward, Michael Hampton, Brent Pabst Sep 10 '12 at 12:54
Questions on Server Fault are expected to relate to professional server, networking, or related infrastructure administration within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Assuming we're talking about text files, try (win) |
||||
|
|
Can you quantify "very large"? And when you say "filter", do mean to only return certain things, or to exclude certain things? Windows findstr.exe copes with large files, but may be too limited for your needs (depending on the answers above). If you've got any scripting experience, Perl is a very good tool for text scanning / replacement. It's damn quick too (I use ActiveState Perl). Ditto the wingrep suggestion above. Finally, if you want to use a GUI app, have a nose at Textpad and Wildedit from www.textpad.com. Textpad's "Find in files" feature is brilliant, but it may have a file size limit. |
|||
|
|
|
I've used Vim in the past with very large (2+ GB) text files, you can find it here: http://www.vim.org/index.php |
|||
|
|