RHEL8 sedコマンドでHTMLタグを取得する
環境
# cat/etc/redhat-release
Red Hat Enterprise Linux release 8.6 (Ootpa)
書式
sed -n '/開始のタグ/,/終了のタグ/p’ 対象のファイル名
操作例
tableタグで囲まれている箇所のみ表示します
sed -n '/<table>/,/<\/table>/p' test.html
Coding Changes the World
環境
# cat/etc/redhat-release
Red Hat Enterprise Linux release 8.6 (Ootpa)
書式
sed -n '/開始のタグ/,/終了のタグ/p’ 対象のファイル名
操作例
tableタグで囲まれている箇所のみ表示します
sed -n '/<table>/,/<\/table>/p' test.html