Horje
sed print from match to end of file Code Example
sed print 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
grep all lines after first match
For grepping all lines from match to end of file use onw of following:
sed -n '/matched/,$p' file
awk '/matched/,0' file




Shell

Related
linux set environment Code Example linux set environment Code Example
gitlab ci exclude branch Code Example gitlab ci exclude branch Code Example
grep print all after Code Example grep print all after Code Example
ubuntu service start example Code Example ubuntu service start example Code Example
how to start splunk Code Example how to start splunk Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9