mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
25 lines
486 B
Bash
Executable file
25 lines
486 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Note: This file is taken, and modified, from gucharmap - svn revision 1169
|
|
#
|
|
# usage: ./download-unicode-files.sh VERSION
|
|
# downloads following files from unicode.org to unicode/:
|
|
# - UnicodeData.txt
|
|
# - Unihan.zip
|
|
# - NamesList.txt
|
|
# - Blocks.txt
|
|
# - Scripts.txt
|
|
#
|
|
|
|
set -e
|
|
|
|
FILES='UnicodeData.txt Unihan.zip NamesList.txt Blocks.txt Scripts.txt'
|
|
|
|
mkdir -p unicode
|
|
|
|
for x in $FILES; do
|
|
wget "https://unicode.org/Public/$1/ucd/$x" -O "unicode/$x"
|
|
done
|
|
|
|
echo 'Done.'
|
|
|