Created
November 29, 2020 11:04
-
-
Save drvenabili/212258be3819b0383e3da8648d3dc0ef to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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