mirror of
https://github.com/openharmony/third_party_quickjs.git
synced 2026-06-30 00:26:39 -04:00
a655816f89
Change-Id: Icc8727a8fbc4a6c4935a79eb2f09dd071a236b35 Change-Id: I7608f6237968bea69d980ebbee6d3032aaf7378a
20 lines
485 B
Bash
20 lines
485 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
url="ftp://ftp.unicode.org/Public/13.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
|