mirror of https://github.com/ElnuDev/rust-jmdict
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
257 B
11 lines
257 B
1 year ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
# https://www.edrdg.org/wiki/index.php/JMdict-EDICT_Dictionary_Project#CURRENT_VERSION_&_DOWNLOAD
|
||
|
wget http://ftp.edrdg.org/pub/Nihongo/JMdict.gz
|
||
|
|
||
|
# Extract and delete archive
|
||
|
gzip -d JMdict.gz
|
||
|
|
||
|
# Add XML extension
|
||
|
mv JMdict JMdict.xml
|