I wanna filter a .log file and get only the lines that have the word 'commands' on it.
I´m using the folowing script:
procedure TForm1.Button2Click(Sender: TObject);
begin
AssignFile(arq,filelist.FileName);
Reset(arq);
While not EOF(arq) do
begin
readln(arq, rec);
i :=...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.