Skip to content

Instantly share code, notes, and snippets.

View andreas5232's full-sized avatar

Andreas Erhard andreas5232

View GitHub Profile
@andreas5232
andreas5232 / bibtexUrls2Pdf.sh
Last active January 9, 2019 21:11
LaTeX URL references to PDF scrollshot
#!/bin/bash
cat quellen.bib | grep "howpublished" | grep -o -P "url{[a-zA-Z0-9\/\%.\-_\:\?=]*}" | sed -e 's/url{//g' | sed -e 's/}//g' | xargs -I '{}' sh -c 'wkhtmltopdf --print-media-type "{}" $(echo {}.pdf | sed -e "s/[^A-Za-z0-9._-]/_/g" )'