#!/bin/sh
for i in `ls *.csl`; do
	rm -f "$i"
	curl -sSO "https://raw.githubusercontent.com/citation-style-language/styles/master/$i"
done
