보푸라기 : 명령을 찾을 수 없음


9

우분투에는 보풀 유틸리티가 있습니까? 어떻게 설치 되나요?

컴퓨터 프로그래밍에서 lint는 Unix 유틸리티입니다.

https://ko.wikipedia.org/wiki/Lint_%28software%29

thufir@mordor:~$ 
thufir@mordor:~$ gcc program.c -o prog
program.c:5:1: warning: return type defaults to int [-Wimplicit-int]
 main()
 ^
thufir@mordor:~$ 
thufir@mordor:~$ ./prog

Hello World

thufir@mordor:~$ 
thufir@mordor:~$ lint program.c
No command 'lint' found, did you mean:
 Command 'line' from package 'util-linux' (main)
 Command 'jlint' from package 'jlint' (universe)
 Command 'link' from package 'coreutils' (main)
 Command 'dlint' from package 'dlint' (universe)
 Command 'lift' from package 'lift' (universe)
 Command 'tint' from package 'tint' (universe)
 Command 'hlint' from package 'hlint' (universe)
lint: command not found
thufir@mordor:~$ 

린트를 다음과 같이 사용하려고합니다.

린트 program.c | 티 program.lint

그러면 컴퓨터에 lint program.c 명령의 표준 출력이 표시되고 동시에 사본이 program.lint 파일에 저장됩니다. program.lint라는 파일이 이미 존재하면 삭제되고 교체됩니다.

https://en.wikipedia.org/wiki/Tee_%28command%29#Unix-like_2

Wikipedia가 참조하는 맨 페이지는 BSD 용이며 Linux 변형에 대한 맨 페이지를 찾을 수 없습니다. 아마도 설치해야합니까?


답변:



7

에서 apt-cache search lint

splint-C 프로그램에 대한 버그를 정적으로 검사하는 도구입니다.
splint-data-버그에 대해 C 프로그램을 정적으로 검사하는 도구-데이터 파일
splint-doc-html-버그에 대해 C 프로그램을 정적으로 검사하는 도구-HTML 문서

설치

sudo apt-get install splint

선적 서류 비치

설명서, 예제 및 다운로드는 웹 사이트 ( http://www.splint.org)를 확인 하십시오 .

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.