This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
LG=$1 | |
WIKI_DUMP_NAME=${LG}wiki-latest-pages-articles.xml.bz2 | |
WIKI_DUMP_DOWNLOAD_URL=https://dumps.wikimedia.org/${LG}wiki/latest/$WIKI_DUMP_NAME | |
# download latest Wikipedia dump in chosen language | |
echo "Downloading the latest $LG-language Wikipedia dump from $WIKI_DUMP_DOWNLOAD_URL..." | |
wget -c $WIKI_DUMP_DOWNLOAD_URL |