Multitail: como visualizar o arquivo inteiro?

1

Eu tenho um arquivo de log grande (10000 linhas). Quando abro com multital apenas as últimas ~ 100 linhas são carregadas, por isso não consigo rolar para trás e ver outra linhas preexistentes.

Não funciona porque afeta apenas as novas linhas que aparecem após a abertura do arquivo:

  • -m nlines
  • -mb x
  • -M nlines
por Jofsey 22.06.2015 / 23:19

3 respostas

1

Finalmente, resolvo com a tubulação.

tail -n 1000 -f myfile.log | multitail -j
    
por 23.06.2015 / 00:16
0

Considere o uso gratuito do TextWrangler .

    
por 22.06.2015 / 23:57
0

man multitail diz o seguinte:

-n number_of_lines

Number of lines to tail initially. The default depends on the size of the terminal-window.

Então você poderia fazer:

multitail -n 2000 /path/to/file

para carregar a linha 2000 no buffer inicial.

    
por 04.09.2017 / 00:57

Tags