Answers for "cat file content after pattern"

0

cat file content after pattern

# greps for Pattern and outputs up to 100000 lines following that line pattern match.
grep -A100000 Pattern file

# greps for word Partition in multiple file ending in .md and outputs up to 15 lines following that line pattern match.
grep -A15 Partition *.md |egrep -v ":--:|:--:" |egrep -v  "md-\|"
Posted by: Guest on December-03-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language