sed
テキストファイルからすべてのコメントを削除するために使用したいと思います。コメントが「A」文字から始まり、改行文字で終わるとしましょう。「A」から改行文字を含む行末までのすべてを削除したいと思います。ただし、「AA」から始まるコメントは削除したくありません。
サンプル入力:
%% comment to do not delete
% comment to delete
% another comment to delte
%% comment to do not delete
Some text % comment to delete
and some more text %% comment to do not delete
望ましい出力:
%% comment to do not delete
%% comment to do not delete
Some text and some more text %% comment to do not delete