Skip to content

Instantly share code, notes, and snippets.

@b0o
Created February 9, 2020 00:54
Show Gist options
  • Save b0o/5962d8ff8095df55e7a93884d9290f42 to your computer and use it in GitHub Desktop.
Save b0o/5962d8ff8095df55e7a93884d9290f42 to your computer and use it in GitHub Desktop.
#!/bin/bash
n="${1:-1}"
output="$(
curl -s "https://www.archlinux.org/feeds/news/" \
| xmlstarlet sel -T -t -m /rss/channel/item -v "concat(pubDate,': ',title)" -n \
| head -n "$n"
)"
echo -e "\e[1;31mhttps://www.archlinux.org/"
echo "$output"
echo -en "\e[0m"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment