6 ms·
If you use Linux or some other Unix, you can also do it with standard Unix tools: wget -O- news.ycombinator.com | grep -o http[^\"]* Personally, I prefer cu
by yeahit 17y ago
If you use Linux or some other Unix, you can also do it with standard Unix tools:
wget -O- news.ycombinator.com | grep -o http[^\"]*
Personally, I prefer curl because it writes to stdout per default:
curl news.ycombinator.com | grep -o http[^\"]*
(After posting this, i noticed that HN cuts * signs at the end of a message. So I have to add this text here, or the last * would not be displayed.)