Skip to content

Instantly share code, notes, and snippets.

@drvenabili
Created November 29, 2020 11:04
Show Gist options
  • Save drvenabili/212258be3819b0383e3da8648d3dc0ef to your computer and use it in GitHub Desktop.
Save drvenabili/212258be3819b0383e3da8648d3dc0ef to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
## This will download and unzip the full bib from the ACL Anthology
## Place this in a publicly accessible folder so you can link the file in Overleaf etc.
## Cronjob to update the file every day at 2 AM:
## 0 2 * * * cd /home/sigmund/aclbib/ && sh dl-bib-extract.sh
wget https://www.aclweb.org/anthology/anthology.bib.gz
gunzip -f anthology.bib.gz
rm -f anthology.bib.gz
echo "Last done on $(date)." >> log.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment