#!/bin/sh
# Fetches BibTeX citation for given DOI
# Usage:  $0 DOI

exec curl -sSgLH 'Accept: application/x-bibtex' "http://dx.doi.org/$1"

# H/t Dan Stowell: https://mastodon.social/@danstowell/110985049274473601
