mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-18 19:35:06 +02:00
* anytermd: Added anyterm to extras. Included modifications on original anytermd project source code. Added a new spec file for centos/fedora/rhel. Tested on FC16/i386 and centos6/x86_84. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6257 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
21 lines
416 B
Bash
Executable File
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
|