목록에서 Grep의 콘텐츠 일치를 제한하는 방법은 무엇입니까? [복사]

목록에서 Grep의 콘텐츠 일치를 제한하는 방법은 무엇입니까? [복사]

난 단서를 알아여기그러나 어떤 제안( ... | cut -c 80)은 단일 문자 출력을 제공합니다. 예: n r s t pI do

# https://unix.stackexchange.com/a/293147/16920
find -L $(find . -type l -name 'Math*') -name '*.tex' -exec fgrep word /dev/null {} +

일부 경기에는 내용이 너무 많아서 잘라내고 싶을 정도입니다. 대부분의 다른 경기는 괜찮지만 라이너를 갖는 것은 내용의 문제입니다.

...
/Math/16.5.2014.tex:Feedback Control of Hormone SecrAlthough the plasma concentrations of many hormones fluctuate in response to various stimuli that occur throughout the day, all hormones studied thus far appear to be closely controlled. In most instances, word [lot more]
...

답변1

파이프라이닝 결과 [Sato]

find | 
| cut -c -80

또는

find ... \
| sed 's/^\(.\{80\}\).*/\1/' 

또는

find - \
| perl -lpe 's/^.{80}\K.*//'

올바른 출력을 제공합니다.

관련 정보