I need to recommend a tool that would cut all lines containing certain substring from 16gb big log. Do not neccessarily have to be windows application.
grep -v
if your system isn’t unix/linux, you might want to consider cygwin, including the other advantages it provides. if that’s overkill, grep for windows might work for you. i think in the windows version they use a slash instead of a dash, so you’d want ‘grep /v
.’
1 Like
thanks, I will give it a shot