Skip to content

Instantly share code, notes, and snippets.

@tphdev
Last active October 16, 2016 17:06
Show Gist options
  • Save tphdev/561d3ec94210f04910ab38b4e25d4a3e to your computer and use it in GitHub Desktop.
Save tphdev/561d3ec94210f04910ab38b4e25d4a3e to your computer and use it in GitHub Desktop.
get-fa-fonts.sh
mkdir ./css/fonts
FONTS_ARRAY=(eot svg ttf woff woff2)
for font_ext in "${FONTS_ARRAY[@]}"
do
echo downloading $font_ext
curl https://raw.githubusercontent.com/FortAwesome/Font-Awesome/master/fonts/fontawesome-webfont.${font_ext}?raw=true > ./css/fonts/fontawesome-webfont.${font_ext}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment