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

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

저는 데비안 친구를 사용하고 있습니다. 내 저장소의 모든 내용을 확인하려고합니다. 메모 마지막 부분에 이런 내용이 있습니다.

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

모든 사항을 확인하기 위해 맨페이지를 찾아봤지만 아무 것도 표시되지 않았습니다. 위험한 검사를 사용하지 않고 최대한 상세하게 만들 수 있는 방법을 찾고 있습니다. 모든 사항을 확인하기 위해 이전에 요청했습니다. 참조하세요..deb 패키지에서 모든 것을 확인하는 방법을 사용하는 방법은 무엇입니까?

답변1

모든 로그를 보려면 다음 명령어를 실행하세요.

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

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

수정된 파일에 대한 검사를 활성화하려면 추가하세요 --flags +modify. 이러한 검사는 위험한 것으로 간주되지 않습니다. check-all-the-things를 출시하기 전에 추가하여 어떤 작업이 수행되는지 확인할 수 있습니다 --commands show.

이 모든 것은 매뉴얼 페이지에 있습니다 ...

관련 정보