#Curl #Python
Get a list of links to Ukraine news non-interactively:
#!/usr/bin/python3
import re, sys
list = re.findall(r"https?:\S+", sys.stdin.read())
for m in list:
print (m, end="\n")
print()
—-
curl https://www.bing.com/news/search?q=ukraine | ./url.py | sort | uniq | sed '/microsoft/d'