Skip to content

Instantly share code, notes, and snippets.

View tzelleke's full-sized avatar

Theodros Zelleke tzelleke

View GitHub Profile
@tzelleke
tzelleke / list_unused_references.sh
Last active May 10, 2023 14:37
Clean up your bibliography for journal submission. List unused references in bibtex bibliography
BIBTEXFILE=bibliography.bib
AUXFILE=manuscript.aux
REFS=$(mktemp -t $$_refs_XXXX) || exit 1
CITED=$(mktemp -t $$_cited_XXXX) || exit 1
egrep '^@' $BIBTEXFILE | \
sed 's/@.*{//' | \
sed 's/,$//' | \
sort >$REFS