~kris/dots

srice

ref: e9b48d06a8541f3eda5c4db90382ab3c77183afb srice/.local/bin/blog-rss-check -rwxr-xr-x 472 bytes
e9b48d06 — Kris Yotam xprofile: systemd-aware pipewire start + blueman-applet; sb-internet: tolerate missing /proc/net/wireless 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env sh
set -eu

if [ "$#" -eq 0 ]; then
  set -- $(find . -type f \( -name '*.xml' -o -name '*.atom' -o -name 'feed*' -o -name 'rss*' \) -not -path '*/node_modules/*' -not -path '*/.git/*')
fi

for f in "$@"; do
  [ -f "$f" ] || continue
  if command -v xmllint >/dev/null 2>&1; then
    xmllint --noout "$f" && printf 'ok %s\n' "$f"
  else
    python3 -c 'import sys, xml.etree.ElementTree as ET; ET.parse(sys.argv[1])' "$f" && printf 'ok %s\n' "$f"
  fi
done