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