diff options
author | bellard <6490144+bellard@users.noreply.github.com> | 2020-09-06 19:02:03 +0200 |
---|---|---|
committer | bellard <6490144+bellard@users.noreply.github.com> | 2020-09-06 19:02:03 +0200 |
commit | 383e2b06c8af144b5cd729dc7bc4ce2e2613f178 (patch) | |
tree | 77bf320a5bf01cbcd248f9b85a804980bc89f01d /unicode_download.sh | |
parent | 0e8fffd4de4a10f498f46cd0e99f53da6a523542 (diff) | |
download | quickjs-383e2b06c8af144b5cd729dc7bc4ce2e2613f178.tar.gz quickjs-383e2b06c8af144b5cd729dc7bc4ce2e2613f178.zip |
2020-03-16 release
Diffstat (limited to 'unicode_download.sh')
-rwxr-xr-x | unicode_download.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/unicode_download.sh b/unicode_download.sh index a72d9ae..87bb295 100755 --- a/unicode_download.sh +++ b/unicode_download.sh @@ -1,8 +1,8 @@ #!/bin/sh set -e -url="ftp://ftp.unicode.org/Public/12.1.0/ucd" -emoji_url="ftp://ftp.unicode.org/Public/emoji/12.0/emoji-data.txt" +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 \ @@ -11,9 +11,9 @@ PropertyValueAliases.txt" mkdir -p unicode -for f in $files; do - g="${url}/${f}" - wget $g -O unicode/$f -done +#for f in $files; do +# g="${url}/${f}" +# wget $g -O unicode/$f +#done wget $emoji_url -O unicode/emoji-data.txt |