Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

sed from match to end of file

For retrieving part from match to end of file use onw of following:
sed -n '/matched/,$p' file
awk '/matched/,0' file
 
PREVIOUS NEXT
Tagged: #sed #match #file
ADD COMMENT
Topic
Name
7+3 =