내가하면 grep -nr sumthin *
내 소스 코드 디렉토리에, 그것은 또한 축소 된 자바 스크립트 나 CSS 파일에서 매우 긴 줄을 결선. 한 줄에 처음 80자를 얻고 싶습니다.
예를 들어, 일반 grep
은 나에게 이것을 제공합니다 :
css/style.css:21: behavior: url("css/iepngfix.htc")
css/style-min.css:4:.arrow1{cursor:pointer;position:absolute;left:5px;bottom:10px;z-index:13;}.arrow2{cursor:pointer;position:absolute;right:5px;bottom:10px;z-index:13;}.calendarModule{z-index:100;}.calendarFooterContainer{height:25px;text-align:center;width:100%!important;z-index:15;position:relative;font-size:15px!important;padding:-2px 0 3px 0;clear:both!important;border-left:1px solid #CCC;border-right:1px ... etc.
하지만 대신 이것을 얻고 싶습니다.
css/style.css:21: behavior: url("css/iepngfix.htc")
css/style-min.css:4:.arrow1{cursor:pointer;position:absolute;left:5px;bottom:
어떤 리눅스 명령이 이것을 할 수 있습니까?
"최소화"? 그게 무슨 뜻이야?
—
CarlF
—
CarlF
두 링크 모두 같은 페이지로 연결됩니다.
—
Victor