
Free fonts Download script (3218 fonts)
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
Very simple script to download all the free fonts from http://www.highfonts.com
There should currently be 3218 Free Fonts...
16 years ago
It is now possible to follow the progress of the downloads.
16 years ago
It is now possible to follow the progress of the downloads.
Graziano
16 years ago
wget -cq http://www.highfonts.com/download.asp?fontID=$COUNTER
Report
Graziano
16 years ago
------------------------------------------------------
# Description:
# Very simple script to download all free fonts from http://www.highfonts.com
# Will work if they don't change their site.
#
# Use:
#
# The script will download the fonts in the directory where it is executed.
#
#!/bin/bash
TOTAL=3218
COUNTER=$TOTAL
INSTALLED=`less ./count`
if [ "$INSTALLED" == "" ] ; then
INSTALLED=$TOTAL
fi
until [ "$COUNTER" == "$INSTALLED" ] ; do
let COUNTER-=1
done
until [ $COUNTER -lt 1 ]; do
clear
echo "Starting the download of free fonts from highfonts.com"
echo "$TOTAL fonts will be downloaded..."
echo "Please wait... (This might take a while...)"
echo
echo "Progress"
echo "-------------------------------------------"
echo "Waiting to download : $COUNTER fonts"
echo "-------------------------------------------"
wget -q http://www.highfonts.com/download.asp?fontID=$COUNTER
rm -rf ./count
echo $COUNTER >> ./count
let COUNTER-=1
done
echo "Done."
------------------------------------------------------
Report
Graziano
16 years ago
until [ $COUNTER -lt 1 ]; do
clear
echo "Starting the download of free fonts from highfonts.com"
echo "$TOTAL fonts will be downloaded..."
echo "Please wait... (This might take a while...)"
echo
echo "Progress"
echo "-------------------------------------------"
echo "Waiting to download : $COUNTER fonts"
echo "-------------------------------------------"
wget -q http://www.highfonts.com/download.asp?fontID=$COUNTER
rm -rf ./count
echo $COUNTER >> ./count
let COUNTER-=1
done
echo "Done."
Report
Fingel
16 years ago
Report
schultz-dk
16 years ago
Try to extract the font(s) you want in /home/.fonts/
Report