~kris/dots

srice

ref: 0e7f2c2785a36c2c4d5f7214411d3746a1667303 srice/.local/bin/pdf2bib-batch -rwxr-xr-x 425 bytes
0e7f2c27 — Kris Yotam xprofile: bump laptop HiDPI to 180 and scale cursor for M1 Pro retina 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