Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
単一のコマンド ラインで sed コマンドを使用して次の行のタグを削除し、出力を次のようにしたい:- リリース日:2013 年 9 月 10 日
<p><strong>Release date:</strong> September 10, 2013</p>
次のsedコマンドでタグを削除する必要があります。
sed
sed 's/<[^>]\+>//g' file
次の awk コマンド
awk 'gsub(/ *<[^>]*> */," ")'
以下を試してください
echo "<p><strong>Release date:</strong> September 10, 2013</p>" | sed 's/<[^>]*>//g'