मैं फ़ाइल लॉग 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}'
कुछ भी नहीं मैं कितनी देर तक प्रतीक्षा करता हूं। मुझे संदेह है कि यह धारा के काम करने के तरीके के साथ कुछ करना है।
किसी को कोई सुराग है?