blob: 3c0d9e38b8578c8d4e70373e5d5ac3f9c5ebda99 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/sh
cd "${0%/*}/.."
mkdir -p data
readonly BASE=https://www.unicode.org/Public/UCD/latest/ucd
readonly URLS='
auxiliary/GraphemeBreakProperty.txt
DerivedCoreProperties.txt
DerivedNormalizationProps.txt
emoji/emoji-data.txt
extracted/DerivedBinaryProperties.txt
PropList.txt
UnicodeData.txt
'
for url in $URLS
do
name="data/${url##*/}"
test -f "$name" || wget -q "$BASE/$url" -O "$name" &
done
wait
|