Skip to content

Instantly share code, notes, and snippets.

@rec3141
Created February 9, 2018 07:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rec3141/b2cc9d192d214687b575ab0cce02f5f8 to your computer and use it in GitHub Desktop.
Save rec3141/b2cc9d192d214687b575ab0cce02f5f8 to your computer and use it in GitHub Desktop.
bash reference manager: get DOI from titles
while read line; do title=`echo $line | sed 's/ /+/g'`; curl -s https://api.crossref.org/works?query.title=$title&rows=1 | tr ',' '\n' | tr -d '"\' | grep ^DOI | cut -f2- -d':'; done < titles.txt > titles.bib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment