~kris/dots

srice

srice/.local/bin/pdf2bib-batch -rw-r--r-- 425 bytes
e98f3b03 — Kris Yotam chore: sync local state after restore (push updates, no pull) a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash
# pdf2bib-batch -- extract BibTeX from all PDFs in a directory
set -euo pipefail
dir="${1:-.}"
out="${2:-references.bib}"
: > "$out"
for pdf in "$dir"/*.pdf; do
    [ -f "$pdf" ] || continue
    echo "Processing: $(basename "$pdf")" >&2
    bib=$(pdf2bib "$pdf" 2>/dev/null) || continue
    if [ -n "$bib" ]; then
        echo "$bib" >> "$out"
        echo "" >> "$out"
    fi
done
echo "Wrote: $out" >&2