return getbib

This commit is contained in:
Luke Smith 2020-06-20 19:48:18 -04:00
parent b20f5d6350
commit 52ea59aac4
No known key found for this signature in database
GPG key ID: 4C50B54A911F6252

14
.local/bin/getbib Executable file
View file

@ -0,0 +1,14 @@
#!/bin/sh
[ -z "$1" ] && echo "Give either a pdf file or a DOI as an argument." && exit
if [ -f "$1" ]; then
# Try to get DOI from pdfinfo or pdftotext output.
doi=$(pdfinfo "$1" | grep -io "doi:.*") ||
doi=$(pdftotext "$1" 2>/dev/null - | grep -io "doi:.*" -m 1) ||
exit 1
else
doi="$1"
fi
# Check crossref.org for the bib citation.
curl -s "http://api.crossref.org/works/$doi/transform/application/x-bibtex" -w "\\n"