모든 것을 확인하여 자세한 출력을 제공하도록 지시하는 방법.

모든 것을 확인하여 자세한 출력을 제공하도록 지시하는 방법.

저는 데비안 메이트를 사용하고 있습니다. 저장소에서 모든 것을 확인하는 기능을 사용하려고 합니다. 나는 비고의 맨 끝에 이것을 얻었습니다 -

Remarks:
- dangerous check: afl bfbtester lockdep perl-b-lint perl-syntax-check zzuf
- help needed: acheck android-lint ansible-lint cbmc checkmp3 chk-origtargz codespell cpants-lint cppclean debian-tracker doc8 erlang-elvis ...
- modifies files: autoscan autoupdate stylish-haskell wrap-and-sort
- no matching files: 7z-test acheck afl android-lint ansible-lint appstream-util-validate appstreamcli-validate autodep8 autoscan autoupdate ...
- no output: bashate bitmap-gnuplot bitmap-inkscape bitmap-povray bitmap-synfig checkbashisms cpuinfo disabled-tests dsa-private-key ...
- no specific checks: *.data *.ogg *.png *.py *.pyc *.txt GPL3 LICENCE LICENSE arguments
- trimmed: bitmap-gimp fdupes fhs http licensecheck pep8 pyflakes pyflakes3 pylint pylint3 spellintian suspicious-source todo

나는 check-all-the-things 맨페이지를 찾아봤지만 아무것도 보지 못했습니다. 위험한 검사를 사용하지 않고 가능한 한 장황하게 하는 방법을 찾고 있습니다. 이전에 모든 사항을 확인하는 것에 대해 이미 문의했습니다..deb 패키지로 모든 것을 확인하는 방법을 사용하는 방법은 무엇입니까?

답변1

모든 로그를 보려면 다음을 실행합니다.

check-all-the-things --silent-checks show --remarks-lines -1 --checks-output-lines -1

--remarks-lines이는 아무것도 출력하지 않는 검사를 표시하고 지정된 라인 수( 의 경우 기본값은 1 , 의 경우 기본값은 10 ) 이후 출력을 자르지 않습니다 --checks-output-lines.

파일을 수정하는 검사를 활성화하려면 --flags +modify; 이는 위험하다고 간주되지 않는 수표입니다. check-all-the-things를 추가하여 풀기 전에 무엇을 할 것인지 확인할 수 있습니다 --commands show.

맨페이지에 다 나와있어요...

관련 정보