[server] strace 출력 문자 문자열 너비를 더 길게 설정하는 방법은 무엇입니까?

이상하게도 어디에서나 찾을 수 없지만 다음과 같이 strace의 출력을 파일로 stdout 할 때 :

strace foo.exe | & tee foo.log

출력을 짧게하면 너비를 어떻게 길게 할 수 있습니까?



답변

“strace”패키지의 Linux에서 “-s”옵션을 사용하면 너비를 지정할 수 있습니다.

-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.


답변

‘-o filename’옵션을 사용하십시오.

  strace -f -o foo.log foo

남자 strace

-o filename 추적 출력을 파일 filename에 기록합니다.


답변