Print a file starting from a certain line until to the end of file sed code example
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
For retrieving part from match to end of file use onw of following:
sed -n '/matched/,$p' file
awk '/matched/,0' file