79308797

Date: 2024-12-26 06:23:48
Score: 0.5
Natty:
Report link

Not sure if I understood your question correctly as it may mean any of following two.

#1 - Grep in first 10 lines

head -10 filename | grep "search string"

#2 - Show first 10 grep result lines

grep "search string" filename | head -10
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: RajeshK