grep
진행중인 tail
파일 로그를 시도 n
하고 줄에서 단어를 얻습니다 . 예제 파일 :
$ cat > test.txt <<EOL
Beam goes blah
John goes hey
Beam goes what?
John goes forget it
Beam goes okay
Beam goes bye
EOL
^C
이제 내가하면 tail
:
$ tail -f test.txt
Beam goes blah
John goes hey
Beam goes what?
John goes forget it
Beam goes okay
Beam goes bye
^C
내가 만약 grep
그 tail
:
$ tail -f test.txt | grep Beam
Beam goes blah
Beam goes what?
Beam goes okay
Beam goes bye
^C
하지만 만약 awk
그 grep
:
$ tail -f test.txt | grep Beam | awk '{print $3}'
아무리 기다려도 아무 문제가 없습니다. 스트림 작동 방식과 관련이 있다고 생각합니다.
누구 단서가 있습니까?