You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
481 B
19 lines
481 B
#!/bin/sh |
|
set -e |
|
|
|
url="ftp://ftp.unicode.org/Public/14.0.0/ucd" |
|
emoji_url="${url}/emoji/emoji-data.txt" |
|
|
|
files="CaseFolding.txt DerivedNormalizationProps.txt PropList.txt \ |
|
SpecialCasing.txt CompositionExclusions.txt ScriptExtensions.txt \ |
|
UnicodeData.txt DerivedCoreProperties.txt NormalizationTest.txt Scripts.txt \ |
|
PropertyValueAliases.txt" |
|
|
|
mkdir -p unicode |
|
|
|
for f in $files; do |
|
g="${url}/${f}" |
|
wget $g -O unicode/$f |
|
done |
|
|
|
wget $emoji_url -O unicode/emoji-data.txt
|
|
|