sed von Match bis Ende der Datei
For retrieving part from match to end of file use onw of following:
sed -n '/matched/,$p' file
awk '/matched/,0' file
Armandres
For retrieving part from match to end of file use onw of following:
sed -n '/matched/,$p' file
awk '/matched/,0' file