Como definir a largura da string de caracteres de saída strace para ser mais longa?

16

Estranhamente não consigo encontrá-lo em nenhum lugar, mas quando eu ponho a saída da strace em um arquivo assim:

strace foo.exe | & tee foo.log

a saída é curta, como posso aumentar a largura?

    
por user61104 27.02.2011 / 09:43

2 respostas

27

A opção "-s" no Linux, do pacote "strace", permite especificar a largura:

-s strsize  Specify  the  maximum  string  size  to  print  (the
            default is 32).  Note that filenames are not consid-
            ered strings and are always printed in full.
    
por 27.02.2011 / 11:45
1

Use a opção '-o filename':

  strace -f -o foo.log foo

homem strace

-o filename Write the trace output to the file filename

    
por 27.02.2011 / 09:47

Tags