~kris/dots

srice

ref: 178c9a25a484ead715392d50e21d03df486b8b41 srice/.local/bin/pdf2bib-batch -rwxr-xr-x 425 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
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