Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

get from match to end of file

For grepping all lines from match to end of file use onw of following:
sed -n '/matched/,$p' file
awk '/matched/,0' file
 
PREVIOUS NEXT
Tagged: #match #file
ADD COMMENT
Topic
Name
8+6 =