コマンドラインでHTMLタグを削除
Nid: 104
$ curl http://lynx.browser.org/ | perl -C -Mutf8 -pe 's/<.+?>//g' $ curl http://lynx.browser.org/ | sed -e 's/<[^>]*>//g'
$ curl http://lynx.browser.org/ | perl -C -Mutf8 -pe 's/<.+?>//g' $ curl http://lynx.browser.org/ | sed -e 's/<[^>]*>//g'