ファイルから特殊文字を削除

ファイルから特殊文字を削除

私はすでにこれを持っています:

'< Jan 20 Sep> This is the sample out put  
This is Sample 
>

'< Jan 21 Sep> This is the sample out put 
This is Known Errors 
 > 

したがって、ファイルから>特殊文字をすべて削除する必要があります。特殊文字>のある行を削除するだけです。私は次のような出力が欲しい

'< Jan 20 Sep> This is the sample out put 
This is Sample 
'< Jan 21 Sep> This is the sample out put  
This is Known Errors 

ベストアンサー1

質問に示すように、「>」文字が1行に表示されたら、次のことができます。

grep -wv '>' thefile

結果:

'< Jan 20 Sep> This is the sample out put
This is Sample

'< Jan 21 Sep> This is the sample out put
This is Known Errors

おすすめ記事