~kris/dots

srice

ref: 178c9a25a484ead715392d50e21d03df486b8b41 srice/.local/bin/blog-links -rwxr-xr-x 472 bytes
178c9a25 — Kris Yotam conky: sync proper config from moirai (was the greenred variant) 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env sh
set -eu

if [ "$#" -eq 0 ]; then
  set -- $(find . \( -path '*/.git' -o -path '*/node_modules' -o -path '*/.next' -o -path '*/_site' \) -prune -o -type f \( -name '*.md' -o -name '*.mdx' -o -name '*.org' -o -name '*.html' -o -name '*.txt' \) -print)
fi

for f in "$@"; do
  [ -f "$f" ] || continue
  rg -o 'https?://[^\]\[()<>"'\''[:space:]]+' "$f" 2>/dev/null |
    sed -e 's/[),.;]*$//' -e 's/#.*$//' |
    awk -v file="$f" '{print $0 "\t" file}'
done