Pattern match till the end of the file.

I have a file which is like this

  ���������������..
  �������������
  �������������
  ��������������
  ��������������.
  ������������
  <<<from_here>>>
  ������������
  ������������.

I want a script which would fetch the data starting from <<<from_here>>> in the file till the end of the file.

I want this information in an another file like this

  <<<from_here>>>
  ������������
  ������������.

Hi

sed -n '/from_here/,$p' file
1 Like
awk '/<<<from_here>>>/{p=1}p' file1 > file2
1 Like