I added some bare-minimum CSS to make it a little nicer to read. Full command (with in-place sed):
curl -o article.htm https://www.wsj.com/amp/articles/the-quants-run-wall-street-now-1495389108 sed -n '/./{/<title/,/<\/title/p;/<p>/,/<\/p>/p;}' -i article.htm echo "<style>html { text-align: center; padding: 36px; } body { max-width: 600px; text-align: left; margin: auto; }</style>" >> article.htm
I added some bare-minimum CSS to make it a little nicer to read. Full command (with in-place sed):