~kris/dots

srice

ref: 9f828eb14bdd54d2c4fd8a3b2c90253021df3152 srice/.local/bin/blog-links -rwxr-xr-x 472 bytes
9f828eb1 — Kris Yotam mksh: backslash-escape commands in history hook to bypass module aliases (wc=tokei, tr=transmission-remote, cat=bat) 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