algo assim deve funcionar, supondo que os dados de origem estejam no arquivo test.txt, isso usa o grep para excluir as linhas que contêm o '^ C':
sed -n '/\^C/,/\^C/p' test.txt|grep -v '\^C'
Saída do seu exemplo:
This is
the
banner
This is
the MOTD
banner