pandorafms/extras/anytermd/libpbe/scripts/unicode/download_tables.sh

21 lines
416 B
Bash
Executable File

for i in \
ISO8859/8859-2.TXT \
ISO8859/8859-3.TXT \
ISO8859/8859-4.TXT \
ISO8859/8859-5.TXT \
ISO8859/8859-6.TXT \
ISO8859/8859-7.TXT \
ISO8859/8859-8.TXT \
ISO8859/8859-9.TXT \
ISO8859/8859-10.TXT \
ISO8859/8859-11.TXT \
ISO8859/8859-13.TXT \
ISO8859/8859-14.TXT \
ISO8859/8859-15.TXT \
ISO8859/8859-16.TXT
do
f="tables/$i"
mkdir -p `dirname $f`
wget "http://unicode.org/Public/MAPPINGS/$i" -O $f
done